-
Notifications
You must be signed in to change notification settings - Fork 56
/
scalingo.json
45 lines (45 loc) · 951 Bytes
/
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
{
"name": "Pix Review App",
"env": {
"REVIEW_APP": {
"description": "Indicates that the application is a review app",
"value": "true"
},
"DOMAIN_PIX_APP": {
"generator": "template",
"template": "https://app-pr%PR_NUMBER%.review.pix"
},
"DOMAIN_PIX_ORGA": {
"generator": "template",
"template": "https://orga-pr%PR_NUMBER%.review.pix"
},
"DOMAIN_PIX_CERTIF": {
"generator": "template",
"template": "https://certif-pr%PR_NUMBER%.review.pix"
}
},
"scripts": {
"first-deploy": "./scripts/scalingo-post-ra-creation.sh"
},
"addons": [
{
"plan": "postgresql:postgresql-sandbox",
"options": {
"version": "15.8"
}
},
{
"plan": "redis:redis-sandbox",
"options": {
"version": "7.2.5"
}
}
],
"formation": {
"web": {
"amount": 1,
"size": "S"
}
},
"stack": "scalingo-22"
}