25 lines
683 B
Plaintext
25 lines
683 B
Plaintext
# Environment configuration for test scripts
|
|
# Copy this to .env in the project root or set these as environment variables
|
|
|
|
# API Base URL - Update this to your deployment
|
|
API_BASE_URL=http://localhost:3002/api
|
|
|
|
# For production deployment, use your domain:
|
|
# API_BASE_URL=https://your-domain.com/uggla/api
|
|
|
|
# Base path (should match VITE_BASE_PATH)
|
|
VITE_BASE_PATH=/uggla
|
|
|
|
# Test authentication credentials
|
|
TEST_USERNAME=admin
|
|
TEST_PASSWORD=admin123
|
|
|
|
# Alternative configurations:
|
|
# For local development:
|
|
# API_BASE_URL=http://localhost:3002/api
|
|
# VITE_BASE_PATH=
|
|
|
|
# For production with different base path:
|
|
# API_BASE_URL=https://your-domain.com
|
|
# VITE_BASE_PATH=/your-custom-path
|