23 lines
433 B
Bash
23 lines
433 B
Bash
# Server Configuration
|
|
PORT=8080
|
|
ENVIRONMENT=development
|
|
|
|
# Database Configuration (MySQL/MariaDB)
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=root
|
|
DB_PASSWORD=
|
|
DB_NAME=lost_and_found
|
|
DB_CHARSET=utf8mb4
|
|
DB_PARSE_TIME=True
|
|
DB_LOC=Local
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET_KEY=L0stF0und$ecureK3y2024!@#M4h4s1sw4UAS*Pr0j3ct&BackendD3v
|
|
|
|
# Upload Configuration
|
|
UPLOAD_PATH=./uploads
|
|
MAX_UPLOAD_SIZE=10485760
|
|
|
|
# CORS Configuration
|
|
ALLOWED_ORIGINS=* |