-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 1.07 KB
/
Copy path.env.example
File metadata and controls
31 lines (24 loc) · 1.07 KB
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
# SignalRange Environment Configuration
# Supabase Configuration
# Get these values from your Supabase project settings
# https://app.supabase.com/project/_/settings/api
# Supabase URL (e.g., https://xxxxx.supabase.co)
PUBLIC_SUPABASE_URL=your_supabase_url_here
# Supabase Anonymous Key (public key, safe to expose)
PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key_here
# Optional: User API Server URL
# Uses KeepTrack's shared user API by default
PUBLIC_USER_API_URL=https://user.keeptrack.space
# Asset Base URL Configuration
# Leave empty for local development (uses local files in public/)
# Set to R2 custom domain for production (e.g., https://assets.signalrange.space)
# This enables serving large audio files from R2 instead of bundling them
PUBLIC_ASSETS_BASE_URL=
# Developer Menu Whitelist
# Comma-separated list of Supabase user IDs that can access the dev menu
# Example: PUBLIC_DEV_USER_IDS=uuid1,uuid2,uuid3
PUBLIC_DEV_USER_IDS=
# Logging Level
# Controls minimum log level shown in console: LOG, INFO, WARN, ERROR
# Default: LOG (shows everything)
PUBLIC_LOG_LEVEL=LOG