23 lines
401 B
Plaintext
23 lines
401 B
Plaintext
# Mecánicas Diesel Backend - Environment Variables
|
|
|
|
# Server
|
|
NODE_ENV=development
|
|
PORT=3010
|
|
|
|
# Database (PostgreSQL)
|
|
DB_HOST=localhost
|
|
DB_PORT=5434
|
|
DB_NAME=mecanicas_diesel_dev
|
|
DB_USER=mecanicas_user
|
|
DB_PASSWORD=mecanicas_secret_2024
|
|
|
|
# JWT
|
|
JWT_SECRET=your-jwt-secret-change-in-production
|
|
JWT_EXPIRES_IN=24h
|
|
|
|
# CORS
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
|
|
|
|
# Logging
|
|
LOG_LEVEL=debug
|