-
Notifications
You must be signed in to change notification settings - Fork 33
/
.env.sample
57 lines (42 loc) · 2.64 KB
/
.env.sample
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
# The Mapbox API key (access token) is required to display the map. You can get it from https://account.mapbox.com/.
VITE_MAPBOX_API_KEY=<your-mapbox-api-key>
# The bounding box is used to limit the geocoding (search) results to a specific area.
# The format is "minLongitude,minLatitude,maxLongitude,maxLatitude".
VITE_MAP_BOUNDING_BOX=13.0824446341071,52.3281202651866,13.7682544186827,52.681600197973
# The trees tileset URL and layer name point to the tileset and the layer that contains the trees data.
# You can see your generated tilesets at https://studio.mapbox.com/tilesets .
VITE_MAPBOX_TREES_TILESET_URL=<your-trees-tileset-url>
VITE_MAPBOX_TREES_TILESET_LAYER=trees
# The Mapbox style URL points to the style used to display the map.
# You can use one of the Mapbox default styles or create your own style at https://studio.mapbox.com/.
VITE_MAPBOX_STYLE_URL=mapbox://styles/mapbox/standard
# The pumps source URL points to the GeoJSON file that contains the pumps data. It is required to display the pumps on the map.
VITE_MAP_PUMPS_SOURCE_URL=<your-pumps-source-url>
# The Mapbox API endpoint is used to fetch the map data (e.g. tilesets).
VITE_MAPBOX_API_ENDPOINT=https://api.mapbox.com
# Zoom levels and other map settings
VITE_MAP_PITCH_DEGREES=45
VITE_MAP_MAX_ZOOM_LEVEL=20
VITE_MAP_MIN_ZOOM_LEVEL=10
VITE_MAP_INITIAL_ZOOM_LEVEL=11
VITE_MAP_LOCATION_ZOOM_LEVEL=17
# The center of the map is used as the default location when the map is loaded.
VITE_MAP_CENTER_LNG=13.388836926491992
VITE_MAP_CENTER_LAT=52.494590307846366
# The URL to the GeoJson file which holds "Bezirke" (districts) data. It is used to display the outline of districts on the "Stats" page.
VITE_BEZIRKE_URL=<your-bezirke-url>
# Matomo tracking (optional, for analytics)
VITE_MATOMO_SITE_ID=<your-matomo-site-id>
VITE_MATOMO_URL=<your-matomo-url>
# The URL to the Supabase API (either local or remote, depending on your setup).
VITE_SUPABASE_URL=http://localhost:54321
# The anon key is used to authenticate with Supabase. It is required to access the data stored in Supabase.
VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0
# The port is only used for local development / tests.
VITE_PORT=5173
# The base URL of the application. In production, use the absolute URL without port.
VITE_BASE_URL=http://localhost:${VITE_PORT}
# Redirect URL for the password recovery page.
VITE_RECOVERY_AUTH_REDIRECT_URL=${VITE_BASE_URL}/profile/reset-password
# Only used for local development / tests, points to the Inbucket server.
TEST_SUPABASE_INBUCKET_URL=http://localhost:54324