# Dokploy environment example for Reforger Crawler # Copy these values into Dokploy Environment Variables. SERVER_HOST=0.0.0.0 SERVER_PORT=8083 SECRET_KEY=change-me-secret ADMIN_SECRET=change-me-admin-secret DISCORD_WEBHOOK_URL= SCRAPER_WEBHOOK_URL= # sqlite or postgres DB_DRIVER=postgres # Used only when DB_DRIVER=sqlite SQLITE_PATH=crawler.db # Option A: full DSN POSTGRES_DSN=postgresql://postgres:change-me-password@postgres-host:5432/dev # Option B: split fields (used when POSTGRES_DSN is empty) POSTGRES_HOST=postgres-host POSTGRES_PORT=5432 POSTGRES_USER=postgres POSTGRES_PASSWORD=change-me-password POSTGRES_DB_NAME=dev POSTGRES_SSLMODE=disable