feat: docker-compose + .env.example + postgresql.conf + updated README

This commit is contained in:
2026-06-16 19:16:08 +02:00
parent fbbdc5e54b
commit 7c9db4d705
4 changed files with 178 additions and 11 deletions
+20
View File
@@ -0,0 +1,20 @@
# willhaben-tracker — PostgreSQL configuration
listen_addresses = '*'
port = 5432
max_connections = 100
# Replication (needed for Supabase realtime)
wal_level = logical
max_wal_senders = 0
max_replication_slots = 0
# Performance
shared_buffers = 128MB
work_mem = 4MB
maintenance_work_mem = 64MB
# Timeouts
idle_in_transaction_session_timeout = 60000
# JSONB output as text for PostgREST compatibility
jsonb_output_as_text = true