forked from rithik/HackX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
91 lines (91 loc) · 3.14 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
88
89
90
91
{
"name": "HackX",
"description": "The complete Hackathon System - Registration, Name Tag Creation, Mentor Queue and Judging",
"env": {
"ADMIN_PASSWORD": {
"description": "Password to make users admins",
"value": "ADMIN_PASSWORD"
},
"EVENT_NAME": {
"description": "Name of the Hackathon",
"value": "HooHacks"
},
"GMAIL_USERNAME": {
"description": "The Gmail account used to send emails to members using the system",
"value": "example@gmail.com"
},
"GMAIL_PASSWORD": {
"description": "The password for for the Gmail account",
"value": "GMAIL_PASSWORD"
},
"MENTOR_PASSWORD": {
"description": "Password to make users mentors",
"value": "MENTOR_PASSWORD"
},
"VOLUNTEER_PASSWORD": {
"description": "Password to make users volunteers",
"value": "VOLUNTEER_PASSWORD"
},
"JUDGING_PASSWORD": {
"description": "Password to make users judges",
"value": "JUDGING_PASSWORD"
},
"DROPBOX_ACCESS_TOKEN": {
"description": "Dropbox Access Token - This will be used to upload resumes and nametags",
"value": "DROPBOX_ACCESS_TOKEN"
},
"ON_HEROKU": {
"description": "Are we running on Heroku?",
"value": "1"
},
"PROD_URL": {
"description": "The URL where this will be hosted (https://APP_NAME.herokuapp.com/) - do not forget the ending /",
"value": "https://APP_NAME.herokuapp.com/"
},
"SLACK_ENABLED": {
"description": "Are you going to be using slack? (True or False)",
"value": "False"
},
"SLACK_API_TOKEN": {
"description": "Slack API Token",
"value": "SLACK_API_TOKEN"
},
"SENDGRID_HOST_PASSWORD":{
"description": "Your Sendgrid API Key. This is needed to text all confirmed participants.",
"value": "SENDGRID_API_KEY"
},
"TWITTER_ENABLED": {
"description": "Are you going to be using Twitter to send notifications? (True or False)",
"value": "False"
},
"TWITTER_CONSUMER_KEY": {
"description": "Twitter Consumer Key",
"value": "TWITTER_CONSUMER_KEY"
},
"TWITTER_CONSUMER_SECRET":{
"description": "Twitter Consumer Secret",
"value": "TWITTER_CONSUMER_SECRET"
},
"TWITTER_ACCESS_TOKEN": {
"description": "Twitter Access Token",
"value": "TWITTER_ACCESS_TOKEN"
},
"TWITTER_ACCESS_TOKEN_SECRET":{
"description": "Twitter Access Token Secret",
"value": "TWITTER_ACCESS_TOKEN_SECRET"
}
},
"addons": [
"heroku-redis",
"sentry"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "heroku/python"
}
],
"keywords": ["hackx", "django", "redis", "postegresql", "hackathon"]
}