-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
43 lines (43 loc) · 1.38 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
42
43
{
"name": "ButterCMS Django Starter Project ",
"description": "Drop-in proof-of-concept Django app, fully integrated with your ButterCMS account.",
"repository": "https://github.com/ButterCMS/django-starter-buttercms",
"logo": "https://cdn.buttercms.com/R3fbtvoRT2CqEQSmk8hb",
"keywords": ["django", "python", "buttercms", "cms", "blog"],
"stack": "heroku-20",
"buildpacks": [
{
"url": "heroku/python"
}
],
"env": {
"DJANGO_SECRET_KEY": {
"description": "The secret key for the Django application.",
"generator": "secret"
},
"DJANGO_SETTINGS_MODULE": {
"description": "Path to Django's settings module",
"value": "config.settings.production"
},
"DJANGO_ADMIN_URL": {
"description": "URL for Django Admin",
"value": "/admin"
},
"DATABASE_URL": {
"description": "The default DB configuration for Django",
"value": "sqlite:///db.sqlite"
},
"BUTTERCMS_API_TOKEN": {
"description": "The API token of your ButterCMS account",
"value": ""
}
},
"environments": {
"test": {
"scripts": {
"test-setup": "python manage.py collectstatic --noinput",
"test": "python manage.py test"
}
}
}
}