forked from covoiturage-libre/covoiturage-libre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscalingo.json
66 lines (66 loc) · 1.65 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "CovoiturageLibre",
"description": "CovoiturageLibre is a Carpooling Open Source platform",
"website": "https://covoiturage-libre.fr/",
"repository": "https://github.com/covoiturage-libre/covoiturage-libre",
"addons": [
"scalingo-postgresql",
"scalingo-redis",
"scalingo-elasticsearch"
],
"env": {
"SECRET_KEY_BASE": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"MAILER_HOST": {
"description": "Host for URL in mails. Required."
},
"MAILER_HOST": {
"description": "Host for URL in mails. Required."
},
"MAILJET_API_KEY": {
"description": "For mails. Required."
},
"MAILJET_API_SECRET": {
"description": "For mails. Required."
},
"FACEBOOK_CLIENT_ID": {
"description": "For Meta data and Facebook login."
},
"FACEBOOK_CLIENT_SECRET": {
"description": "For Facebook login."
},
"GOOGLE_CLIENT_ID": {
"description": "For Google login."
},
"GOOGLE_CLIENT_SECRET": {
"description": "For Google login."
},
"GEONAMES_URL": {
"description": "For import only"
},
"GA_TRACKING_ID": {
"description": "Google Analytics"
},
"SENTRY_DSN": {
"description": "To report occurring errors."
},
"SLAASK_WIDGET_KEY": {
"description": "For visitors chat with you."
}
},
"scripts": {
"postdeploy": "rake db:enable_postgis db:migrate db:seed:pages searchkick:reindex CLASS=City"
},
"formation": {
"web": {
"amount": 1,
"size": "S"
},
"worker": {
"amount": 1,
"size": "S"
}
}
}