diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-29 00:07:01 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-29 00:07:01 +0100 |
commit | 216156880237251ddd10df9a2b82c68de7696d25 (patch) | |
tree | 8d7b8808ef915f2a9ce9b4c1a14f5a63f6b7feb9 /instance/config.py | |
parent | docker now exposes port number 5532 for postgres (diff) | |
download | newspipe-216156880237251ddd10df9a2b82c68de7696d25.tar.gz newspipe-216156880237251ddd10df9a2b82c68de7696d25.tar.bz2 newspipe-216156880237251ddd10df9a2b82c68de7696d25.zip |
DEBUG set to False by default.
Diffstat (limited to 'instance/config.py')
-rw-r--r-- | instance/config.py | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/instance/config.py b/instance/config.py new file mode 100644 index 00000000..8a3fdb6b --- /dev/null +++ b/instance/config.py @@ -0,0 +1,74 @@ +import os + +# +# Example configuration file for a PostgreSQL database. +# + +# Webserver +HOST = "0.0.0.0" +PORT = 5000 +DEBUG = True +API_ROOT = "/api/v2.0" + +CSRF_ENABLED = True +SECRET_KEY = "LCx3BchmHRxFzkEv4BqQJyeXRLXenf" +SECURITY_PASSWORD_SALT = "L8gTsyrpRQEF8jNWQPyvRfv7U5kJkD" + +# Database +DB_CONFIG_DICT = { + "user": "postgres", + "password": "password", + "host": "db", + "port": 5432, +} +DATABASE_NAME = "postgres" +SQLALCHEMY_DATABASE_URI = "postgres://{user}:{password}@{host}:{port}/{name}".format( + name=DATABASE_NAME, **DB_CONFIG_DICT +) + +# Security +CONTENT_SECURITY_POLICY = { + 'default-src': '\'self\'', + 'img-src': '*', + 'media-src': [ + 'youtube.com', + ], + 'script-src': [ + '\'self\'', + '\'unsafe-inline\'', + ], + 'style-src': [ + '\'self\'', + '\'unsafe-inline\'', + ] +} +# Crawler +CRAWLING_METHOD = "default" +DEFAULT_MAX_ERROR = 6 +HTTP_PROXY = "" +CRAWLER_USER_AGENT = "Newspipe (https://git.sr.ht/~cedric/newspipe)" +CRAWLER_TIMEOUT = 30 +CRAWLER_RESOLV = False +RESOLVE_ARTICLE_URL = False +FEED_REFRESH_INTERVAL = 120 + +# Notification +MAIL_SERVER = "localhost" +MAIL_PORT = 25 +MAIL_USE_TLS = False +MAIL_USE_SSL = False +MAIL_DEBUG = DEBUG +MAIL_USERNAME = None +MAIL_PASSWORD = None +MAIL_DEFAULT_SENDER = "admin@admin.localhost" +TOKEN_VALIDITY_PERIOD = 3600 +PLATFORM_URL = "https://www.newspipe.org" + +# Misc +BASE_DIR = os.path.abspath(os.path.dirname(".")) +LANGUAGES = {"en": "English", "fr": "French"} +TIME_ZONE = {"en": "US/Eastern", "fr": "Europe/Paris"} +ADMIN_EMAIL = "admin@admin.localhost" +LOG_LEVEL = "info" +LOG_PATH = "./var/newspipe.log" +SELF_REGISTRATION = True |