From 6ff6978636c2c220de19073a6b7d69ccbce3fe78 Mon Sep 17 00:00:00 2001 From: Geekyhobo <66805063+Geekyhobo@users.noreply.github.com> Date: Thu, 12 Mar 2026 12:15:01 -0400 Subject: [PATCH] Add DB Config to development.toml (#43036) add db config development.toml --- Resources/ConfigPresets/Build/development.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index 2d7e86fc6cb..fe633015db7 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -59,4 +59,13 @@ storage_limit = 3 [audio] # DeltaV attenuation = 4 # inversedistanceclamped 1 << 2, see audioparams.cs -z_offset = -2 \ No newline at end of file +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"