-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
66 lines (66 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "Rattm App",
"description": "This app integrates with Firebase and uses Django for handling transactions.",
"keywords": [
"django",
"firebase",
"python"
],
"website": "https://rattm-f300025e7172.herokuapp.com/",
"repository": "https://github.com/zzadxz/RATTM",
"env": {
"SECRET_KEY": {
"description": "Django secret key for cryptographic signing.",
"generator": "secret"
},
"FIREBASE_CERT_URL": {
"description": "Firebase certificate URL",
"required": true
},
"FIREBASE_CLIENT_EMAIL": {
"description": "Firebase client email",
"required": true
},
"FIREBASE_CLIENT_ID": {
"description": "Firebase client ID",
"required": true
},
"FIREBASE_PRIVATE_KEY": {
"description": "Firebase private key",
"required": true
},
"FIREBASE_PRIVATE_KEY_ID": {
"description": "Firebase private key ID",
"required": true
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "3"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-2x"
}
},
"image": "heroku/python",
"buildpacks": [
{
"url": "heroku/python"
}
],
"environments": {
"test": {
"formation": {
"test": {
"quantity": 1,
"size": "standard-2x"
}
},
"scripts": {
"test": "cd backend && python manage.py migrate --noinput && coverage run manage.py test && coverage report"
}
}
}
}