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