Modify syslog_parser.py to load environment variables from .env file and force IPv4 connection to the database. Update replit.md to reflect recent fixes and workflow changes. Increment version in version.json. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 727221f9-ad54-4498-b2e4-e87a951b4308 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/c9ITWqD
17 lines
446 B
Plaintext
17 lines
446 B
Plaintext
# Database PostgreSQL
|
|
# IMPORTANTE: Usa 127.0.0.1 invece di localhost per forzare IPv4 (evita problemi con ::1)
|
|
PGHOST=127.0.0.1
|
|
PGPORT=5432
|
|
PGDATABASE=ids_database
|
|
PGUSER=ids_user
|
|
PGPASSWORD=ids_password_change_me
|
|
|
|
# Session Secret (genera una stringa random sicura)
|
|
SESSION_SECRET=change_me_to_random_string_minimum_32_chars
|
|
|
|
# Python Backend URL (per frontend)
|
|
VITE_PYTHON_API_URL=http://localhost:8000
|
|
|
|
# Node Environment
|
|
NODE_ENV=production
|