-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.local.example
115 lines (86 loc) · 3.99 KB
/
.env.local.example
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# A random password for the lamassu admin user. Should be long and should not contain special signs.
LAMASSU_ADMIN_PASSWORD=secret
# Public URL of Lamassu, used in the GBFS feeds generated by it.
LAMASSU_BASE_URL=https://api.mobidata-bw.de/sharing
# Credentials for DbConnect API. Mind the rate limit. transformer-proxy will set ttls for static/dynamic feeds. The required ttls need to
# be set matching the approved rate limits.
LAMASSU_DB_CONNECT_CLIENT_ID=client
LAMASSU_DB_CONNECT_API_KEY=secret
# Credentials for BOLT API.
LAMASSU_BOLT_CLIENT_ID=client
LAMASSU_BOLT_CLIENT_PASSWORD=secret
# Credentials for Tier
LAMASSU_TIER_API_URL=http://example.org
LAMASSU_TIER_USER=user
LAMASSU_TIER_PASSWORD=secret
# Credentials for Voi
LAMASSU_VOI_AUTH_URL=http://example.org
LAMASSU_VOI_CLIENT_ID=user
LAMASSU_VOI_CLIENT_PASSWORD=secret
# Credentials for sharedmobility.ch
LAMASSU_SHAREDMOBILITY_CH_AUTHORIZATION=mail@domain
# User and password from Deer
DEER_USER=user
DEER_PASSWORD=password
# User and password for Flinkster API
FLINKSTER_CLIENT_ID=client_id
FLINKSTER_SECRET=secret
# Credentials for Free2move
X2GBFS_FREE2MOVE_USER=user
X2GBFS_FREE2MOVE_PASSWORD=secret
# Url to the cantamen IXSI service. Note: this service is IP restricted
CANTAMEN_IXSI_API_URL=http://example.org
#Timeout for cantamen IXSI websocket connection in seconds
CANTAMEN_IXSI_API_TIMEOUT=timeout
# Token for x2gbfs/stadtwerk_tauberfranken
MOQO_API_TOKEN=token
# A random password for pgbouncer clients (gtfs-api, geoserver, dagster, etc.)
PGBOUNCER_POSTGRES_PASSWORD=secret
# Base URL of gtfs-api, as seen from the browser/client. Usually the Docker host's DNS name or IP address.
IPL_GTFS_API_PUBLIC_BASE_URL=https://api.mobidata-bw.de/gtfs
IPL_GTFS_DB_POSTGRES_PASSWORD=password
IPL_GTFS_DB_POSTGREST_PASSWORD=password
# gtfs-api-docs variables
IPL_GTFS_API_DOCS_PUBLIC_HOST=api.mobidata-bw.de
IPL_GTFS_API_DOCS_PUBLIC_PORT=443
# A random password which will be used for the postgresql database which is used by Dagster. Should be long and should not contain special
# signs in order to prevent escaping issues (eg: 32 chars alphanumeric).
DAGSTER_POSTGRES_PASSWORD=secret
# Password for ipl-db, which is the generic database for datasets intended for wms/wfs publication, in case no
# application specific database is used
IPL_POSTGRES_PASSWORD=password
# Public Geoserver URL
GEOSERVER_PROXY_BASE_URL=https://api.mobidata-bw.de/geoserver
# A random password for geoserver admin access
GEOSERVER_ADMIN_PASSWORD=password
# A random password which will be used for the postgresql database which is used by OCPDB. Should be long and should not contain special
# signs in order to prevent escaping issues (eg: 32 chars alphanumeric).
OCPDB_POSTGRES_PASSWORD=secret
# A secret key used for Flask. Should be long and should not contain special signs in order to prevent escaping issues (eg: 32 chars
# alphanumeric).
OCPDB_SECRET_KEY=secret
# A secret key needed for some OCPDB data sources to create reproducable UIDs. Should be long and should not contain special signs in
# order to prevent escaping issues (eg: 32 chars alphanumeric).
OCPDB_OBJECT_ID_SECRET=secret
# Public OCPDB URL
OCPDB_PROJECT_URL=https://api.mobidata-bw.de/ocpdb
# A random password which will be used for the postgresql database which is used by ParkAPI. Should be long and should not contain special
# signs.
PARK_API_POSTGRES_PASSWORD=secret
# A secret key used for Flask. Should be long and should not contain special signs.
PARK_API_SECRET_KEY=secret
# Public ParkAPI URL
PARK_API_PROJECT_URL=https://api.mobidata-bw.de/park-api
# RadVIS credentials
RADVIS_WFS_USER=user
RADVIS_WFS_PASSWORD=secret
# SVZBW DATEX2 Download URL
ROADWORKS_SVZBW_DATEX2_DOWNLOAD_URL=https://url
# Webcam
WEBCAM_FTP_SERVER=server
WEBCAM_FTP_USER=user
WEBCAM_FTP_PASSWORD=password
# BasicAuth for Traefik: https://doc.traefik.io/traefik/middlewares/http/basicauth/#configuration-examples
WEBCAM_BASIC_AUTH=secret
# BasicAuth to access restricted GBFS feeds
GBFS_BASIC_AUTH=user1:hashed_password1,user2:hashed_password2