- Introduced a new backup environment file containing local Supabase and Vision API configurations. - Configured environment variables for Supabase URL, anonymous key, and various Vision API settings. - Enabled modules for video, vision system, and scheduling in the development environment.
18 lines
534 B
Plaintext
Executable File
18 lines
534 B
Plaintext
Executable File
# Local Supabase config for Vite dev server
|
|
VITE_SUPABASE_URL=http://exp-dash:54321
|
|
VITE_SUPABASE_ANON_KEY=[REDACTED]
|
|
|
|
|
|
# Vision API Configuration
|
|
VITE_VISION_API_URL=http://exp-dash:8000
|
|
VITE_ENABLE_VIDEO_MODULE=true
|
|
VITE_VIDEO_REMOTE_URL=http://exp-dash:3001/assets/remoteEntry.js?v=1761849082
|
|
VITE_MEDIA_API_URL=http://exp-dash:8090
|
|
|
|
# Vision System Module
|
|
VITE_ENABLE_VISION_SYSTEM_MODULE=true
|
|
VITE_VISION_SYSTEM_REMOTE_URL=http://exp-dash:3002/assets/remoteEntry.js
|
|
|
|
# Enable scheduling module
|
|
VITE_ENABLE_SCHEDULING_MODULE=true
|