-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
36 lines (36 loc) · 1.26 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
{
"name": "GTFS Rails API",
"description": "Converts static and realtime GTFS data into JSON API.",
"repository": "https://github.com/transitnownash/gtfs-rails-api",
"logo": "https://raw.githubusercontent.com/transitnownash/wego-bus-map/main/public/apple-icon.png",
"keywords": ["ruby", "rails", "mysql", "transit", "gtfs"],
"addons": [
"cleardb"
],
"env": {
"RAILS_MASTER_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"DATABASE_URL": {
"description": "MySQL database connection.",
"value": "mysql2://username:[email protected]/gtfs_database"
},
"GTFS_URL": {
"description": "Static GTFS Zip File URL",
"value": "http://example.com/gtfs.zip"
},
"GTFS_REALTIME_ALERTS_URL": {
"description": "GTFS Realtime Alerts URL (Optional)",
"value": "http://example.com/alerts.pb"
},
"GTFS_REALTIME_TRIP_UPDATES_URL": {
"description": "GTFS Realtime Trip Updates URL (Optional)",
"value": "http://example.com/tripupdates.pb"
},
"GTFS_REALTIME_VEHICLE_POSITIONS_URL": {
"description": "GTFS Realtime Vehicle Positions URL (Optional)",
"value": "http://example.com/vehiclepositions.pb"
}
}
}