forked from hostolab/covidliste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscalingo.json
46 lines (46 loc) · 797 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
46
{
"env": {
"PLATFORM_URL": {
"generator": "url"
},
"IS_REVIEW_APP": {
"value": "true"
},
"BLAZER_DATABASE_URL": {
"value": ""
},
"LOCKBOX_MASTER_KEY": {
"generator": "secret"
},
"SECRET_KEY_BASE": {
"generator": "secret"
},
"SLACK_INCOMING_WEBHOOK_URL": {
"value": ""
},
"RAILS_MAX_THREADS": {
"value": "2"
}
},
"addons": [
{
"plan": "postgresql:postgresql-sandbox"
},
{
"plan": "redis:redis-sandbox"
}
],
"formation": {
"web": {
"amount": 1,
"size": "S"
},
"worker": {
"amount": 1,
"size": "S"
}
},
"scripts": {
"first-deploy": "bundle exec rails db:migrate && echo 'Placeholder pour créer les fakedata'"
}
}