-
Notifications
You must be signed in to change notification settings - Fork 1
/
scalingo.json
45 lines (45 loc) · 1.03 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
{
"name": "Stats - Import",
"description": "Import statistics into metabase database from csv extract",
"repository": "https://github.com/tchapgouv/tchap-stats",
"env": {
"S3_BUCKET_NAME": {
"description": "S3 Bucket name",
"value": "",
"required": false
},
"S3_ACCESS_KEY_ID": {
"description": "S3 Access Id",
"value": "",
"required": false
},
"S3_SECRET_ACCESS_KEY": {
"description": "admin password",
"value": "",
"required": false
},
"DATABASE_URL": {
"description": "database url",
"value": "$SCALINGO_POSTGRESQL_URL"
},
"CRON_SCHEDULE": {
"description": "CRON SCHEDULE to run jobs",
"value": "01:00"
},
"FORCE_SYNC_AT_START": {
"description": "if true, run the sync stats job at container start",
"value": "False"
}
},
"addons": ["postgresql:postgresql-starter"],
"formation": {
"web": {
"amount": 0,
"size": "S"
},
"cron": {
"amount": 1,
"size": "S"
}
}
}