From 5239ca929301c7b399b5eced1b32210919f1d5ba Mon Sep 17 00:00:00 2001 From: Enstrayed <48845980+Enstrayed@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:54:48 -0800 Subject: [PATCH] update gitignore and make example config --- .gitignore | 3 ++- config.example.json | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 config.example.json diff --git a/.gitignore b/.gitignore index 40b878d..cf7c602 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -node_modules/ \ No newline at end of file +node_modules/ +config.json \ No newline at end of file diff --git a/config.example.json b/config.example.json new file mode 100644 index 0000000..65ec315 --- /dev/null +++ b/config.example.json @@ -0,0 +1,23 @@ +{ + "redisServer": "hazeldale", + "redisPort": 6379, + + "routesDirectory": "./routes", + + "apiPort": 8081, + + "cider": { + "targetHost": "localhost", + "targetPort": 10769, + + "authKeyInDb": "apiAuthKeys.cider" + }, + + "azure": { + "connectionString": "", + "senderAddress": "apinotifications@enstrayed.com", + + "authKeyInDb": "apiAuthKeys.azure" + } + +} \ No newline at end of file