1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-23 00:03:33 +00:00
bazarr/frontend/.env.development
Liang Yi 50a252fdd7
Frontend improvement and cleanup (#1690)
* Replace Create-React-App with Vite.js

* Update React-Router to v6

* Cleanup unused codes
2022-03-16 14:26:15 +08:00

29 lines
763 B
Text

# Override by duplicating me and rename to .env.local
# The following environment variables will only be used during development
# API key of your backend
# VITE_API_KEY="YOUR_SERVER_API_KEY"
# Address of your backend
VITE_PROXY_URL=http://127.0.0.1:6767
# Bazarr configuration path, must be absolute path
# Vite will use this variable to find your bazarr API key
VITE_BAZARR_CONFIG_FILE="../data/config/config.ini"
# Proxy Settings
# Allow Unsecured connection to your backend
VITE_PROXY_SECURE=true
# Allow websocket connection in Socket.IO
VITE_ALLOW_WEBSOCKET=true
# Display update section in settings
VITE_CAN_UPDATE=true
# Display update notification in notification center
VITE_HAS_UPDATE=false
# Display React-Query devtools
VITE_QUERY_DEV=false