This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathapp.json
87 lines (87 loc) · 2.61 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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
},
"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
},
"PGPORT": {
"description": "Host address used to connect to the database",
"required": true
},
"SLACK_API_TOKEN": {
"description": "API token for accessing the Slack API",
"required": true
},
"STRIPE_PRIVATE_KEY": {
"description": "Private key for accessing the Stripe API",
"required": true
},
"STRIPE_PUBLISH_KEY": {
"description": "Publishable key for accessing the Stripe API",
"required": true
},
"APPLICATIONS_OPEN_STATUS": {
"description": "Indicates whether applications are open or closed",
"required": true
},
"MAILCHIMP_API_KEY": {
"description": "API key for accessing the Mailchimp API",
"required": true
},
"MAILCHIMP_INTERESTED_LIST_ID": {
"description": "Mailchimp List ID for the mailing list for people interested in the next Hack Cambridge event",
"required": true
},
"PUSHER_KEY": {
"description": "API key for accessing the Pusher API",
"required": true
}
}
}