-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
74 lines (74 loc) · 3.26 KB
/
app.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
65
66
67
68
69
70
71
72
73
74
{
"name": "Crown Heights Mutual Aid Slack",
"description": "Slack App for Covid volunteer intake",
"repository": "https://github.com/crownheightsaid/slack-app",
"keywords": ["node", "express", "heroku"],
"logo": "https://avatars.slack-edge.com/2020-03-19/1015865338678_c52bc4c5d11b93ff2b40_230.jpg",
"image": "heroku/nodejs",
"env": {
"APP_NAME": {
"description": "Name of your organization (Crown Heights Mutual Aid)",
"required": false
},
"AIRTABLE_KEY": {
"description": "Find this in (https://airtable.com/account) under 'API'",
"required": false
},
"AIRTABLE_BASE": {
"description": "Go to your airtable base. Click on 'Help -> API Documentation' in top right. Scroll to `Authentication`. The thing we need is in 'base('')` to the right.",
"required": false
},
"AIRTABLE_PAYMENTS_BASE": {
"description": "If set, should point to the base ID for p2p payments.",
"required": false
},
"AIRTABLE_SYNC": {
"description": "If set, run the Airtable sync worker in the main process with this frequency in milliseconds.",
"required": false
},
"SLACK_BOT_TOKEN": {
"description": "Go to the 'Install App' tab for your app (https://api.slack.com/apps/<your-app-id>/install-on-team). This is 'Bot User Oauth Access Token'",
"required": false
},
"SLACK_SIGNING_SECRET": {
"description": "Go to the 'Basic Information' tab for your app (https://api.slack.com/apps/<your-app-id>/general). This is 'Signing Secret'",
"required": false
},
"TWILIO_AUTH_TOKEN": {
"description": "Go to https://www.twilio.com/console and copy what's under 'AUTH TOKEN'",
"required": false
},
"TWILIO_ACCOUNT_SID": {
"description": "Go to https://www.twilio.com/console and copy what's under 'ACCOUNT SID'",
"required": false
},
"TWILIO_VOICEMAIL_URL": {
"description": "A url to an mp3 to play when someone calls your Twilio number. Twilio lets you host files here: https://www.twilio.com/console/assets/public",
"required": false
},
"GEONAME_CLIENT_ID": {
"description": "Your geoname username. Use if you need /geo API routes (used in the website). It's free to get and use! https://www.geonames.org/login. After creating an account, make sure to enable the API: https://www.geonames.org/enablefreewebservice",
"required": false
},
"GOOGLE_MAPS_API_KEY": {
"description": "Specifically the key for the geocoding service. Free for quite a bit of usage. https://developers.google.com/maps/documentation/geocoding/get-api-key",
"required": false
},
"REACT_APP_MAPBOX_ACCESS_TOKEN": {
"description": "Mapbox token for client side map. Can be found on https://account.mapbox.com/",
"required": false
},
"BASIC_AUTH_USERS": {
"description": "String of username:password separated by semicolons. Used for authed routes (nycma)",
"required": false
},
"MANYC_WEBHOOK_URL": {
"description": "URL for sending updates to Manyc. Provided by Mutual Aid NYC.",
"required": false
},
"TWILIO_SMS_DELIVERY_ENDPOINT": {
"description": "Twilio endpoint to send SMS for assigning delivery requests via the delivery needed app",
"required": false
}
}
}