updates, dokploy
All checks were successful
Cross Compile Go / build (push) Successful in 12m11s

This commit is contained in:
ilbinek
2026-04-09 01:39:37 +02:00
parent fcebe00175
commit e39a92c6d3
14 changed files with 450 additions and 276 deletions

View File

@@ -1,7 +1,20 @@
port: 8083
ip: "localhost"
secret: "secret"
db: "crawler.db"
discordWebhook: ""
scraperWebhook: ""
adminSecret: "123456789"
server_port: "8083"
server_host: "localhost"
secret_key: "secret"
admin_secret: "123456789"
discord_webhook_url: ""
scraper_webhook_url: ""
db_driver: "sqlite"
sqlite_path: "crawler.db"
# Set db_driver to "postgres" and provide either postgres_dsn
# or individual postgres_* fields.
postgres_dsn: ""
postgres_host: ""
postgres_port: "5432"
postgres_user: "postgres"
postgres_password: ""
postgres_db_name: "dev"
postgres_sslmode: "disable"