-
Notifications
You must be signed in to change notification settings - Fork 341
/
app.json
57 lines (57 loc) · 2.05 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
{
"name": "Quill",
"description": "Registration, for hackathons!",
"env": {
"NODE_ENV": {
"description": "dev or production",
"value": "dev"
},
"JWT_SECRET": {
"description": "Long random string used to verify JWT tokens for user authentication",
"generator": "secret"
},
"ROOT_URL": {
"description": "Root URL for your registration system",
"value": "http://localhost:3000"
},
"ADMIN_EMAIL": {
"description": "Credentials for the admin user created at app initialization",
"value": "[email protected]"
},
"ADMIN_PASS": "party",
"EMAIL_ADDRESS": {
"description": "The email address that is included in the 'email us' link at the bottom of emails.",
"value": "[email protected]"
},
"HACKATHON_NAME": "Hackathon",
"TWITTER_HANDLE": {
"description": "Everything after https://twitter.com/",
"value": "hackathon"
},
"FACEBOOK_HANDLE": {
"description": "Everything after https://facebook.com/",
"value": "hackathon"
},
"EMAIL_CONTACT": {
"description": "Used to send verification, registration, and confirmation emails",
"value": "Hackathon Team <[email protected]>"
},
"EMAIL_HOST": "smtp.gmail.com",
"EMAIL_USER": "[email protected]",
"EMAIL_PASS": "password",
"EMAIL_PORT": "465",
"EMAIL_HEADER_IMAGE": "https://s3.amazonaws.com/hackmit-assets/Banner_600.jpg",
"TEAM_MAX_SIZE": {
"description": "Limits the number of users that can join a team",
"value": "4"
},
"SLACK_HOOK": {
"description": "Used to send error messages to your Slack team when the API catches an error",
"value": "https://hooks.slack.com/services/your-api-key"
}
},
"addons": [
"mongolab"
],
"keywords": ["quill", "node", "express", "mongo"]
}