forked from sebastienbarbier/seven23_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.25 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.25 KB
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
44
45
46
47
48
{
"name": "Seven23 Server",
"description": "Fully manual budget app to track your expenses. Completely opensource, with privacy by design.",
"keywords": [
"budget",
"budgeting",
"budget-manager",
"budget-app",
"privacy",
"end-to-end-encryption",
"opensource",
"python3",
"django",
"django-rest-framework",
"api-server",
"self-hosted-api"
],
"website": "https://seven23.io/",
"logo": "https://app.seven23.io/images/icons/apple-touch-icon.png",
"repository": "https://github.com/sebastienbarbier/seven23_server",
"addons": [
"heroku-postgresql"
],
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"ALLOW_ACCOUNT_CREATION": {
"description": "Enable/Disable signin for new user.",
"value": "True"
},
"CONTACT_EMAIL": {
"description": "Administrator's email to receive notifications"
},
"STORAGE": "whitenoise"
},
"scripts": {
"postdeploy": "python manage.py migrate; python manage.py loaddata initial_data.json"
},
"environments": {
"test": {
"scripts": {
"test": "python manage.py test --settings seven23.settings_tests"
}
}
}
}