Files
2026-06-10 02:15:05 -06:00

15 lines
235 B
Bash

# Database
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=postgres
DB_NAME=cotizador_e3
# Auth
API_KEY=change-me-to-a-secure-random-key
JWT_SECRET=change-me-to-a-secure-jwt-secret
# Server
API_HOST=0.0.0.0
API_PORT=8000