21 lines
591 B
Text
21 lines
591 B
Text
# FILE: .env.example
|
|
# Copy this file to .env.development or .env.production and configure values
|
|
|
|
# API Configuration
|
|
# Backend API base URL (protocol + domain, without /api/v1 path)
|
|
VITE_API_BASE_URL=http://localhost:8000
|
|
|
|
# Legacy API configuration (optional)
|
|
VITE_API_DOMAIN=127.0.0.1:8000
|
|
VITE_API_PROTOCOL=http
|
|
|
|
# Frontend Configuration
|
|
VITE_WWW_DOMAIN=localhost:5174
|
|
VITE_WWW_PROTOCOL=http
|
|
|
|
# Upload Configuration
|
|
VITE_IMAGE_UPLOAD_MAX_FILESIZE_IN_BYTES=5242880
|
|
VITE_IMAGE_UPLOAD_MAX_FILESIZE_ERROR_MESSAGE=File size must be less than 5MB
|
|
|
|
# Development mode flag
|
|
VITE_DEV_MODE=false
|