-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
76 lines (76 loc) · 2.55 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
{
"name": "Online OH Queue",
"description": "A website for online office hours",
"repository": "https://github.com/mike2151/Online-OH-queue",
"keywords": ["django", "python", "office hours", "queue", "online"],
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "heroku-redis"
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
],
"env": {
"COURSE_TITLE": {
"description": "Title of the course",
"value": "CIS 121"
},
"DEFAULT_FROM_EMAIL": {
"description": "The email address that various emails will be sent from",
"value": "[email protected]"
},
"DOMAIN_NAME": {
"description": "Domain of the website. Should be just the name of the site followed by the top level domain (ex. .com)",
"value": "test-ohqueue.herokuapp.com"
},
"EMAIL_HOST": {
"description": "The email host for sending emails",
"value": "smtp.sendgrid.net"
},
"EMAIL_USERNAME": {
"description": "Username for the email hosting",
"value": "apikey"
},
"EMAIL_PASSWORD": {
"description": "Password for the email hosting",
"value": "password"
},
"FAVICON_URL": {
"description": "Link to a .ico file for the site favicon",
"value": "http://www.iconj.com/ico/7/n/7nyy6txzog.ico"
},
"MAX_WAIT_TIME": {
"description": "The maximum time that will display for average wait time in queues.",
"value": "60"
},
"OFFICE_HOURS_URL": {
"description": "URL to office hours schedule",
"value": "https://www.cis.upenn.edu/~cis121/current/schedule.html"
},
"PRIMARY_THEME_COLOR": {
"description": "The primary color for the website. By default, it is green.",
"value": "#445B73"
},
"QUEUE_TIME_ZONE": {
"description": "Time zone of the office hour queues. All time zones: https://gist.github.com/heyalexej/8bf688fd67d7199be4a1682b3eec7568",
"value": "America/New_York"
},
"SECRET_KEY": {
"description": "A secret key for making hashes",
"generator": "secret"
},
"START_OF_WEEK": {
"description": "Start of the office hours week cycle",
"value": "Monday"
}
}
}