-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
43 lines (43 loc) · 1.15 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
{
"addons": [
"heroku-postgresql:hobby-dev"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-pgbouncer"
},
{
"url": "heroku/python"
}
],
"env": {
"SECRET_KEY": {
"description": "A secret key for cryptographic signing.",
"generator": "secret"
},
"DJANGO_SUPERUSER_USERNAME": {
"description": "The username for the Django superuser.",
"value": "live_admin"
},
"DJANGO_SUPERUSER_PASSWORD": {
"description": "The password for the Django superuser.",
"generator": "secret"
},
"DJANGO_SUPERUSER_EMAIL": {
"description": "The email address for the Django superuser.",
"value": "live@hacktj.org"
},
"SENDGRID_API_KEY": {
"description": "Your Sendgrid API key; it likely starts with `SG.`."
}
},
"keywords": [
"python",
"django",
"tailwind",
"allauth",
"channels"
],
"name": "HackTJ Live",
"description": "A massively scalable application for realtime hackathon judging and mentoring."
}