forked from slyapustin/django-chatbot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
41 lines (41 loc) · 927 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
34
35
36
37
38
39
40
41
{
"name": "Django Chatbot",
"description": "Django Chatbot application with the background tasks processing and communications via WebSockets.",
"keywords": [
"celery",
"django",
"heroku",
"daphne",
"channels",
"django-channels",
"chatbot",
"websockets"
],
"website": "https://github.com/slyapustin/django-chatbot/",
"repository": "https://github.com/slyapustin/django-chatbot/",
"env": {
"DJANGO_SECRET_KEY": {
"description": "A secret key for a particular Django installation.",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"addons": [
{
"plan": "heroku-postgresql"
},
{
"plan": "heroku-redis"
}
]
}