# Application Settings
APP_NAME="CRUD Using JS"
APP_ENV=development
PORT=3001
BASE_URL=http://localhost:3000

# Database Settings
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=
DB_NAME=node_project_db
DB_CONNECTION=mysql
DB_CHARSET=utf8mb4
DB_COLLATION=utf8mb4_unicode_ci

# Debug Settings
DEBUG=true
LOG_LEVEL=debug

# Timezone Settings
TZ=UTC

# Security Settings
JWT_SECRET=your_jwt_secret_key
SESSION_SECRET=your_session_secret

# CORS Settings
CORS_ORIGIN=*

# Rate Limiting
RATE_LIMIT_WINDOW=15
RATE_LIMIT_MAX=100