-
Notifications
You must be signed in to change notification settings - Fork 1
/
scalingo.json
52 lines (52 loc) · 1.39 KB
/
scalingo.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
{
"name": "MonDiagArtif",
"stack": "scalingo-20",
"description": "Tableau de bord pour mesurer l'artificialisation des sols des collectivités",
"logo": "https://mondiagartif.beta.gouv.fr/static/img/logo-mon-diagnostic-artificialisation.svg",
"repository": "https://github.com/MTES-MCT/sparte",
"website": "https://mondiagartif.beta.gouv.fr/",
"env": {
"IS_REVIEW_APP": {
"description": "flag to know it's a review app",
"value": "true"
},
"DOMAIN_URL": {
"description": "URL of the application",
"generator": "url"
},
"ADMIN_URL": {
"description": "Admin URL of the application",
"generator": "url",
"template": "%URL%/admin/"
}
},
"addons": [
{
"plan": "postgresql:postgresql-starter-1024"
},
{
"plan": "redis:redis-sandbox"
}
],
"formation": {
"web": {
"amount": 1,
"size": "2XL"
},
"celerydefaultworker": {
"amount": 1,
"size": "M"
},
"celerylongworker": {
"amount": 1,
"size": "XL"
},
"celerybeat": {
"amount": 1,
"size": "S"
}
},
"scripts": {
"first-deploy": "bash bin/init_review_database.sh"
}
}