From 6e8aaca7f0d79349ed2f2339abb3373763d265ba Mon Sep 17 00:00:00 2001 From: Timothy Schenk Date: Mon, 14 Aug 2023 13:50:36 +0200 Subject: [PATCH] config: add default testing config --- .gitignore | 2 -- Server/settings.json | 12 ++++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 Server/settings.json diff --git a/.gitignore b/.gitignore index 3357906..c2a26ef 100644 --- a/.gitignore +++ b/.gitignore @@ -480,5 +480,3 @@ $RECYCLE.BIN/ .idea .vscode - -settings.json \ No newline at end of file diff --git a/Server/settings.json b/Server/settings.json new file mode 100644 index 0000000..8b9e207 --- /dev/null +++ b/Server/settings.json @@ -0,0 +1,12 @@ +{ + "DB": { + "Username": "continuitydevuser", + "Host": "perf.rainote.dev", + "Password": "7>CU`D2/LKw6hD/7", + "Database": "continuity", + "Port": "13543" + }, + "Testing": { + "CreateAccountOnLogin": true + } +}