diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-03 22:43:55 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-03 22:43:55 +0530 |
commit | b0181e19f071a653d7293ef10b0f0587c9852dac (patch) | |
tree | ad65e9baf4ef8a6f3614ab6fdbcca90212b66c6e | |
parent | 00baa0ccc5971b3e579345748dafc59c4b6a9907 (diff) |
added config for app
l--------- | app/config.py | 1 | ||||
-rw-r--r-- | app/config_dev.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/config.py b/app/config.py new file mode 120000 index 0000000..3f8a6e4 --- /dev/null +++ b/app/config.py @@ -0,0 +1 @@ +config_dev.py
\ No newline at end of file diff --git a/app/config_dev.py b/app/config_dev.py new file mode 100644 index 0000000..801c0c2 --- /dev/null +++ b/app/config_dev.py @@ -0,0 +1,3 @@ +SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/test.db' +SQLALCHEMY_TRACK_MODIFICATIONS = False +SECRET_KEY = "tchtchtch"
\ No newline at end of file |