* Consolidate KittyCAD API token environment variables * Remove duplicate variable in type definition * Remove unnecessary intermediate steps * Keep base label for concatenation functions
20 lines
649 B
Plaintext
20 lines
649 B
Plaintext
# DO NOT commit secrets, overrides go in the ignored `.env.development.local`
|
|
|
|
NODE_ENV=development
|
|
DEV=true
|
|
|
|
# App
|
|
VITE_KC_API_WS_MODELING_URL=wss://api.dev.zoo.dev/ws/modeling/commands
|
|
VITE_KITTYCAD_API_BASE_URL=https://api.dev.zoo.dev
|
|
VITE_KC_SITE_BASE_URL=https://dev.zoo.dev
|
|
VITE_KC_SITE_APP_URL=https://app.dev.zoo.dev
|
|
VITE_KC_CONNECTION_TIMEOUT_MS=5000
|
|
#VITE_WASM_URL="optional override of Wasm URL if not on default port 3000"
|
|
#VITE_KITTYCAD_API_TOKEN="required for testing, optional to skip auth in the app"
|
|
FAIL_ON_CONSOLE_ERRORS=true
|
|
|
|
# KCL
|
|
RUST_BACKTRACE=1
|
|
PYO3_PYTHON=/usr/local/bin/python3
|
|
#KITTYCAD_API_TOKEN=$VITE_KITTYCAD_API_TOKEN
|