Add DB Config to development.toml (#43036)

add db config development.toml
This commit is contained in:
Geekyhobo 2026-03-12 12:15:01 -04:00 committed by Coryler
parent 9b5a09e8a8
commit 6ff6978636
1 changed files with 10 additions and 1 deletions

View File

@ -59,4 +59,13 @@ storage_limit = 3
[audio] # DeltaV
attenuation = 4 # inversedistanceclamped 1 << 2, see audioparams.cs
z_offset = -2
z_offset = -2
[database]
# Change to postgres if needed
engine = "sqlite"
pg_host = "localhost"
pg_port = 5432
pg_database = "ss14"
pg_username = "postgres"
pg_password = "postgres"