diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-17 22:11:38 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-17 22:11:38 +0100 |
commit | bd1b5e5b00dd61840f378cfe916c5729c87781fb (patch) | |
tree | 825c503bac0d46539e8db2776121c7508b83c4c9 /instance | |
parent | Updated default SQLite configuration file. (diff) | |
download | newspipe-bd1b5e5b00dd61840f378cfe916c5729c87781fb.tar.gz newspipe-bd1b5e5b00dd61840f378cfe916c5729c87781fb.tar.bz2 newspipe-bd1b5e5b00dd61840f378cfe916c5729c87781fb.zip |
added files for docker
Diffstat (limited to 'instance')
-rw-r--r-- | instance/sqlite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instance/sqlite.py b/instance/sqlite.py index ad802865..e6065ed3 100644 --- a/instance/sqlite.py +++ b/instance/sqlite.py @@ -5,7 +5,7 @@ import os # # Webserver -HOST = "127.0.0.1" +HOST = "0.0.0.0" PORT = 5000 DEBUG = False API_ROOT = "/api/v2.0" @@ -47,3 +47,4 @@ ADMIN_EMAIL = "admin@admin.localhost" LOG_LEVEL = "info" LOG_PATH = "./var/newspipe.log" SELF_REGISTRATION = True +SQLALCHEMY_TRACK_MODIFICATIONS = False |