forked from hackcambridge/hc-2019-4d
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
60 lines (60 loc) · 1.8 KB
/
app.json
File metadata and controls
60 lines (60 loc) · 1.8 KB
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
{
"name": "Hack Cambridge",
"repository": "https://github.com/hackcambridge/hack-cambridge-website",
"env": {
"APP_ID": {
"description": "A random, public, identifier for this application",
"generator": "secret"
},
"AUTH_SESSION_SECRET": {
"description": "The secret given to client-sessions to encrypt Cookies",
"required": true,
"generator": "secret"
},
"MYMLH_CLIENT_ID": {
"description": "The public identifier for the app speaking to MyMLH",
"required": true,
"value": "1926df5db5d25159e71a8e1529e167935900e3cc6f831221d0f2f74bf0c26b5c"
},
"MYMLH_CLIENT_SECRET": {
"description": "The private secret used to confirm MyMLH client identity",
"required": true
},
"MAILGUN_API_KEY": {
"description": "API key for accessing the Mailgun API",
"required": true
},
"AWS_ACCESS_KEY_ID": {
"description": "Access key ID for interacting with Amazon Web Services",
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Secret access key for interacting with Amazon Web Services",
"required": true
},
"S3_BUCKET": {
"description": "Name of the AWS S3 bucket used to store files",
"required": true
},
"PGDATABASE": {
"description": "Name of the PostgreSQL database",
"required": true
},
"PGUSER": {
"description": "Username used to access the database",
"required": true
},
"PGPASSWORD": {
"description": "Password used to access the database",
"required": true
},
"PGHOST": {
"description": "Host address used to connect to the database",
"required": true
},
"SLACK_API_TOKEN": {
"description": "API token for accessing the Slack API",
"required": true
}
}
}