-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
51 lines (51 loc) · 1.25 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
{
"name": "alert-in-ua-twitter",
"description": "A Ruby application that retrieves alerts from alerts.in.ua and posts them to Twitter",
"repository": "https://github.com/kraiany/alerts_in_ua_2_twitter",
"keywords": [
"ruby",
"twitter",
"alerts"
],
"image": "ghcr.io/kraiany/kraiany/alerts_in_ua_2_twitter:master",
"cron": [
{
"command": "bundle exec ruby bin/alert_twitter",
"schedule": "* * * * *"
}
],
"env": {
"ALERTS_IN_UA_TOKEN": {
"description": "API token for alerts.in.ua",
"required": true
},
"TWITTER_CONSUMER_KEY": {
"description": "Twitter API consumer key",
"required": true
},
"TWITTER_CONSUMER_SECRET": {
"description": "Twitter API consumer secret",
"required": true
},
"TWITTER_ACCESS_TOKEN": {
"description": "Twitter API access token",
"required": true
},
"TWITTER_ACCESS_SECRET": {
"description": "Twitter API access secret",
"required": true
},
"DATABASE_URL": {
"description": "URL for the database connection",
"required": true
},
"SNITCH_URL": {
"description": "URL for monitoring service (optional)",
"required": false
}
},
"scripts": {
"dokku": {
}
}
}