forked from jacobian/channels-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
26 lines (26 loc) · 720 Bytes
/
app.json
File metadata and controls
26 lines (26 loc) · 720 Bytes
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
{
"name": "Django Channels Example",
"description": "A real-time chat app, built as a simple example of using Django Channels ",
"repository": "https://github.com/jacobian/channels-example",
"keywords": ["django", "channels", "websockets"],
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"SECRET_KEY": {
"description": "Django's SECRET_KEY setting",
"generator": "secret"
}
},
"addons": ["heroku-postgresql", "heroku-redis"],
"formation": {
"web": {
"quantity": 1,
" size": "Free"
},
"worker": {
"quantity": 1,
"size": "Free"
}
}
}