-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 loc) · 854 Bytes
/
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
{
"name": "decidim-greenpeace",
"description": "Decidim ",
"cron": [
{
"command": "bundle exec rails decidim:open_data:export",
"schedule": "0 1 * * *"
},
{
"command": "bundle exec rails decidim:metrics:all",
"schedule": "0 3 * * *"
},
{
"command": "bundle exec rails decidim:delete_download_your_data_files",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rails decidim:reminders:all",
"schedule": "0 4 * * *"
},
{
"command": "bundle exec rails decidim:mailers:notifications_digest_daily",
"schedule": "10 4 * * *"
},
{
"command": "bundle exec rails decidim:mailers:notifications_digest_weekly",
"schedule": "30 4 * * *"
}
],
"scripts": {
"dokku": {
"postdeploy": "bundle exec rails db:migrate"
}
}
}