13 lines
404 B
Bash
13 lines
404 B
Bash
# Default environment file - DO NOT commit sensitive data
|
|
# Use environment-specific files instead:
|
|
# - .env.local (Local Development)
|
|
# - .env.dev (Development Server)
|
|
# - .env.test (Test/QA Environment)
|
|
# - .env.uat (UAT Environment)
|
|
#
|
|
# Run with: npm run dev:local | npm run dev:dev | npm run dev:test | npm run dev:uat
|
|
|
|
VITE_API_URL=http://localhost:3001/api
|
|
VITE_ENV=local
|
|
VITE_APP_NAME=AeroResolve
|