This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnow.json
64 lines (64 loc) · 1.58 KB
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"version": 2,
"name": "passplum",
"alias": "passplum.maxbeatty.com",
"builds": [
{
"src": "src/static/*",
"use": "@now/static"
},
{
"src": "src/routes/*.js",
"use": "@now/node@canary"
}
],
"routes": [
{
"src": "/",
"methods": ["GET"],
"dest": "src/routes/index.js"
},
{
"src": "/privacy",
"methods": ["GET"],
"dest": "src/routes/privacy.js"
},
{
"src": "/slacker",
"methods": ["POST"],
"dest": "src/routes/slacker.js"
},
{
"src": "/slack/oauth",
"methods": ["GET"],
"dest": "src/routes/slacker-oauth.js"
},
{
"src": "/tweeter",
"methods": ["GET"],
"dest": "src/routes/tweeter.js"
},
{
"src": "/static/(.*)",
"methods": ["GET"],
"dest": "src/static/$1"
}
],
"env": {
"NODE_ENV": "production",
"ROLLBAR_ACCESS_TOKEN": "@pp-rollbar-access-token",
"PASSPLUM_TWEETER_SECRET": "@pp-tweeter-secret",
"PASSPLUM_VOCAB_ID": "@pp-vocab-id",
"SLACK_CLIENT_ID": "@pp-slack-client-id",
"SLACK_CLIENT_SECRET": "@pp-slack-client-secret",
"SLACK_SIGNING_SECRET": "@pp-slack-signing-secret",
"TWITTER_CONSUMER_KEY": "@pp-twitter-consumer-key",
"TWITTER_CONSUMER_SECRET": "@pp-twitter-consumer-secret",
"TWITTER_ACCESS_TOKEN": "@pp-twitter-access-token",
"TWITTER_ACCESS_SECRET": "@pp-twitter-access-secret",
"CRYPTO_SALT": "@pp-crypto-salt",
"PP_AWS_REGION": "us-west-1",
"PP_AWS_ACCESS_KEY_ID": "@pp-aws-key",
"PP_AWS_SECRET_ACCESS_KEY": "@pp-aws-secret"
}
}