-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
62 lines (58 loc) · 1.44 KB
/
app.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
{
"name": "1élève1stage",
"description": "Help students to find quality internships",
"website": "https://stagedeseconde.1jeune1solution.gouv.fr/",
"repository": "https://github.com/betagouv/monstagedeseconde",
"stack": "heroku-22",
"buildpacks": [{
"url": "heroku/nodejs"
}, {
"url": "heroku/ruby"
}],
"environments": {
"review": {
"formation": {
"web": {
"quantity": 1,
"size": "basic"
},
"worker": {
"quantity": 1,
"size": "basic"
}
},
"scripts": {
"postdeploy": "bundle exec bin/rails db:schema:load db:migrate db:seed infra:notify_deployed"
},
"env": {
"RAILS_ENV": "review",
"RAKE_ENV": "review",
"RAILS_MAX_THREADS": 6,
"WEB_CONCURRENCY": 1,
"CONVENTION_ENABLED": true,
"YARN_PRODUCTION": false,
"WEBINAR_URL": "https://webinar.stagedeseconde.1jeune1solution.gouv.fr/"
},
"addons": [
{
"plan": "heroku-postgresql:mini",
"options": {
"version": "15",
"extensions":
"public.pg_trgm,
public.postgis,
public.unaccent,
public.geography"
}
},
{
"plan": "papertrail:choklad"
}, {
"plan": "scheduler:standard"
}, {
"plan": "mailtrap:unpaid"
}
]
}
}
}