18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
# PANJIT Document Translator Frontend - Environment Template
|
|
# Copy this file to .env and modify the values as needed
|
|
|
|
# Application Settings
|
|
VITE_APP_TITLE=PANJIT Document Translator
|
|
VITE_APP_VERSION=1.0.0
|
|
|
|
# API Configuration (Update these for production)
|
|
VITE_API_BASE_URL=http://127.0.0.1:5000/api/v1
|
|
VITE_WS_BASE_URL=ws://127.0.0.1:5000
|
|
|
|
# File Upload Settings
|
|
VITE_MAX_FILE_SIZE=26214400
|
|
VITE_ALLOWED_FILE_TYPES=.doc,.docx,.ppt,.pptx,.xls,.xlsx,.pdf
|
|
|
|
# Development Settings
|
|
VITE_DEV_MODE=true
|
|
VITE_MOCK_API=false |