forked from OpnTec/open-event-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
33 lines (33 loc) · 872 Bytes
/
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
{
"name": "Open Event Org server",
"description": "A fully functional conference event management system using flask",
"repository": "https://github.com/fossasia/open-event-orga-server/",
"logo": "http://labs.fossasia.org/images/fossasia.png",
"keywords": [
"open-event",
"fossasia",
"flask"
],
"env": {
"APP_SECRET_TOKEN": {
"generator": "secret"
},
"ON_HEROKU": "true",
"FORCE_SSL": "true",
"INVITATION_CODE": {
"generator": "secret"
}
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:hobby-dev"
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"scripts": {
"postdeploy": "python manage.py initialize_db -c [email protected]:fossasia"
}
}