aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 00:18:00 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-29 00:18:00 +0100
commite726aa1f137004d9c45bbc7cd2e3dda45d92c3db (patch)
tree73e2d67abf96695bf41da24c8ba26948cfac4b81 /README.md
parentDEBUG set to False by default. (diff)
downloadnewspipe-e726aa1f137004d9c45bbc7cd2e3dda45d92c3db.tar.gz
newspipe-e726aa1f137004d9c45bbc7cd2e3dda45d92c3db.tar.bz2
newspipe-e726aa1f137004d9c45bbc7cd2e3dda45d92c3db.zip
set DEBUG to True also when SQLite is used.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 48817181..bdc92fd5 100644
--- a/README.md
+++ b/README.md
@@ -61,11 +61,11 @@ $ python runserver.py
```
If you want to use PostgreSQL you can customize
-the provided example configuration file (``instance/production.py``):
+the provided example configuration file (``instance/config.py``):
```bash
$ sudo apt-get install postgresql
-$ cp instance/production.py instance/postgresql.py
+$ cp instance/config.py instance/postgresql.py
$ vim instance/postgresql.py # customize it
$ export Newspipe_CONFIG=postgresql.py
```
bgstack15