aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 23:44:56 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-11 23:44:56 +0100
commite86a8bd5f6d04a905dc2f67087178514f714c81c (patch)
treef7322f210fe3e79caff092a4c42cecdfd0a66084 /README.md
parentUpdated README. (diff)
downloadnewspipe-e86a8bd5f6d04a905dc2f67087178514f714c81c.tar.gz
newspipe-e86a8bd5f6d04a905dc2f67087178514f714c81c.tar.bz2
newspipe-e86a8bd5f6d04a905dc2f67087178514f714c81c.zip
Simplified deployment section.
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 29195db6..dd648333 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ https://lists.sr.ht/~cedric/newspipe
Newspipe is really easy to deploy.
Assuming you have already installed ``git``, ``npm``, ``poetry``, and
-``Python >= 3.8`` (better to use [pyenv](https://github.com/pyenv/pyenv)).
+``Python >= 3.8``, you just have to do the following:
```bash
$ git clone https://git.sr.ht/~cedric/newspipe
@@ -47,11 +47,11 @@ $ poetry shell
$ python manager.py db_create
$ python manager.py create_admin <nickname> <password>
$ python runserver.py
- * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)
+ * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
```
If you want to use PostgreSQL you can customize
-the provided example configuration file (in ``instance/production.py``):
+the provided example configuration file (``instance/production.py``):
```bash
$ sudo apt-get install postgresql
bgstack15