diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-11 09:42:35 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-11 09:42:35 +0100 |
commit | 1a8bc2b373faccc52c4cdd7fd88837096a93e3cd (patch) | |
tree | 88aa58226ba62406a1f29f4a87e81733ff65536e /README.md | |
parent | Fixed CSS menu class in article template. (diff) | |
download | newspipe-1a8bc2b373faccc52c4cdd7fd88837096a93e3cd.tar.gz newspipe-1a8bc2b373faccc52c4cdd7fd88837096a93e3cd.tar.bz2 newspipe-1a8bc2b373faccc52c4cdd7fd88837096a93e3cd.zip |
Updated README.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -21,12 +21,12 @@ https://lists.sr.ht/~cedric/newspipe ## Main features * multiple users can use a Newspipe instance; -* an API to manage your feeds (you can connect your own crawler); +* an API to manage feeds (you can connect your own crawler); * data liberation: export and import your account with a JSON file; * export and import feeds with OPML files; * search and favorite articles; * detection of inactive feeds; -* share on Pinboard and reddit; +* share articles on Pinboard, Reddit and Twitter; * management of bookmarks (with import from Pinboard). @@ -37,7 +37,7 @@ Newspipe is really easy to deploy. ### Requirements ```bash -$ sudo apt-get install postgresql npm +$ sudo apt-get install npm postgresql ``` ## Configure and install the application @@ -45,8 +45,8 @@ $ sudo apt-get install postgresql npm ```bash $ git clone https://git.sr.ht/~cedric/newspipe $ cd newspipe/ -$ poetry install $ npm install +$ poetry install $ cp instance/production.py instance/development.py $ poetry shell $ python manager.py db_create @@ -54,6 +54,14 @@ $ python runserver.py * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit) ``` +If you want to use SQLite you do not need to install PostgreSQL. Simply use +the provided configuration file (in ``instance/sqlite.py``) thank to this +environment variable: + +```bash +export Newspipe_CONFIG=sqlite.py +``` + ## License [Newspipe](https://git.sr.ht/~cedric/newspipe) is under the |