aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 09:12:21 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-10 09:12:21 +0100
commitc3e447beef4ac43eb3c9d7dd58932bba5cfac1b9 (patch)
tree387e93b2087edb7ee5d2f8be83b9b11e47eeec9b /README.md
parentUpdated defautl configuration file. (diff)
downloadnewspipe-c3e447beef4ac43eb3c9d7dd58932bba5cfac1b9.tar.gz
newspipe-c3e447beef4ac43eb3c9d7dd58932bba5cfac1b9.tar.bz2
newspipe-c3e447beef4ac43eb3c9d7dd58932bba5cfac1b9.zip
Updated README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index cbf8df90..071622eb 100644
--- a/README.md
+++ b/README.md
@@ -46,10 +46,10 @@ $ git clone https://git.sr.ht/~cedric/newspipe
$ cd newspipe/
$ poetry install
$ npm install
-$ cp newspipe/conf/conf.cfg-sample newspipe/conf/conf.cfg
+$ cp instance/production.py instance/development.py
$ poetry shell
-$ python newspipe/manager.py db_create
-$ python newspipe/runserver.py
+$ python manager.py db_create
+$ python runserver.py
* Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
```
bgstack15