15 lines
958 B
Bash
15 lines
958 B
Bash
# ─── Base de datos ──────────────────────────────────────────
|
|
# PostgreSQL en la Raspberry Pi 5 del homelab
|
|
DATABASE_URL=postgres://joel:***@192.168.1.87:5432/nutriapp
|
|
|
|
# ─── Servidor ───────────────────────────────────────────────
|
|
HOST=0.0.0.0
|
|
PORT=3100
|
|
|
|
# ─── Logging ────────────────────────────────────────────────
|
|
RUST_LOG=nutriapp_backend=debug,tower_http=debug
|
|
|
|
# ─── Auth ───────────────────────────────────────────────────
|
|
# Clave para firmar cookies de sesión (generar con: openssl rand -base64 64)
|
|
SESSION_KEY=cambiar-por-clave-real-de-64-bytes
|