-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
21 lines (21 loc) · 718 Bytes
/
app.json
File metadata and controls
21 lines (21 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "Cli Chat App",
"description": "A command-line chat application using Flask, SocketIO and Click.",
"repository": "https://github.com/prettyirrelevant/cli-chat",
"keywords": ["socketio", "real-time", "flask", "python", "click"],
"addons": ["heroku-postgresql:hobby-dev"],
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"JWT_SECRET_KEY": {
"description": "JWT secret key for Flask-JWT-Extended",
"generator": "secret"
},
"DEBUG": {
"description": "Whether the application should run in DEVELOPMENT. Accepts either `false` or `true`",
"value": false
}
}
}