-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathconfig.docker.example.json
More file actions
30 lines (30 loc) · 975 Bytes
/
config.docker.example.json
File metadata and controls
30 lines (30 loc) · 975 Bytes
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
{
"$schema": "./config.schema.json",
"port": 4000,
"env": "production",
"api-keys": [
"test"
],
"protected-api-keys": [
"your-secure-test-key-here"
],
"exempt-api-keys": [
"org.onebusaway.iphone"
],
"_comment": "WARNING: Change 'api-keys' before deploying to production! The default 'test' key is for development only.",
"rate-limit": 100,
"gtfs-static-feed": {
"url": "https://www.soundtransit.org/GTFS-rail/40_gtfs.zip",
"enable-gtfs-tidy": false
},
"gtfs-rt-feeds": [
{
"trip-updates-url": "https://api.pugetsound.onebusaway.org/api/gtfs_realtime/trip-updates-for-agency/40.pb?key=org.onebusaway.iphone",
"vehicle-positions-url": "https://api.pugetsound.onebusaway.org/api/gtfs_realtime/vehicle-positions-for-agency/40.pb?key=org.onebusaway.iphone",
"service-alerts-url": "",
"realtime-auth-header-name": "",
"realtime-auth-header-value": ""
}
],
"data-path": "/app/data/gtfs.db"
}