From 2945c999b52dec99a0a0e197794438cc7074ab9d Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sat, 9 Sep 2023 23:53:40 +0300 Subject: [PATCH] Added `config.json` file --- .gitignore | 5 ----- config.json | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) create mode 100644 config.json diff --git a/.gitignore b/.gitignore index 40d4e71..5dbd8f8 100644 --- a/.gitignore +++ b/.gitignore @@ -128,11 +128,6 @@ dmypy.json # Pyre type checker .pyre/ - -config.json -debug - local-cdn/ -config.json node_modules/ package-lock.json diff --git a/config.json b/config.json new file mode 100644 index 0000000..2a84c25 --- /dev/null +++ b/config.json @@ -0,0 +1,15 @@ +{ + "DEBUG": false, + "SECRET_KEY": "", + "ALLOWED_HOSTS": [ + "", + ], + "DATABASE": { + "ENGINE": "", + "NAME": "", + "USER": "", + "PASSWORD": "", + "HOST": "", + "PORT": "" + } +}