aboutsummaryrefslogtreecommitdiff
path: root/src/conf/conf.cfg-sample
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-02-26 11:27:31 +0100
commit62b3afeeedfe054345f86093e2d243e956c1e3c9 (patch)
treebbd58f5c8c07f5d87b1c1cca73fa1d5af6178f48 /src/conf/conf.cfg-sample
parentUpdated Python dependencies. (diff)
downloadnewspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.gz
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.bz2
newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.zip
The project is now using Poetry.
Diffstat (limited to 'src/conf/conf.cfg-sample')
-rw-r--r--src/conf/conf.cfg-sample31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/conf/conf.cfg-sample b/src/conf/conf.cfg-sample
deleted file mode 100644
index ed14a4d9..00000000
--- a/src/conf/conf.cfg-sample
+++ /dev/null
@@ -1,31 +0,0 @@
-[webserver]
-host = 0.0.0.0
-port = 5000
-secret_key = a secret only you know
-debug = true
-[cdn]
-cdn_address = https://cdn.cedricbonhomme.org/
-[misc]
-platform_url = http://127.0.0.1:5000/
-admin_email =
-security_password_salt = a secret to confirm user account
-token_validity_period = 3600
-log_path = ./var/log/newspipe.log
-log_level = info
-[database]
-database_url = sqlite:///newspipe.db
-[crawler]
-crawling_method = default
-default_max_error = 6
-user_agent = Newspipe (https://gitlab.com/newspipe/newspipe)
-timeout = 30
-resolv = false
-feed_refresh_interval = 120
-[notification]
-notification_email = Newspipe@no-reply.com
-host = smtp.googlemail.com
-port = 465
-tls = false
-ssl = true
-username = your-gmail-username
-password = your-gmail-password
bgstack15