(Feat): Initial Commit
This commit is contained in:
24
backend-deno/.env
Normal file
24
backend-deno/.env
Normal file
@@ -0,0 +1,24 @@
|
||||
# Database Configuration
|
||||
DB_HOST=localhost
|
||||
DB_USER=root
|
||||
DB_PASSWORD=admin123
|
||||
DB_NAME=work_allocation
|
||||
DB_PORT=3306
|
||||
|
||||
# JWT Configuration - CHANGE IN PRODUCTION!
|
||||
JWT_SECRET=work_alloc_jwt_secret_key_change_in_production_2024
|
||||
JWT_EXPIRES_IN=7d
|
||||
|
||||
# Server Configuration
|
||||
PORT=3000
|
||||
|
||||
# Security Configuration
|
||||
BCRYPT_ROUNDS=12
|
||||
RATE_LIMIT_WINDOW_MS=900000
|
||||
RATE_LIMIT_MAX_REQUESTS=100
|
||||
|
||||
# CORS Configuration (comma-separated for multiple origins)
|
||||
CORS_ORIGIN=http://localhost:5173
|
||||
|
||||
# Environment
|
||||
NODE_ENV=development
|
||||
Reference in New Issue
Block a user