aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-02-02 18:09:06 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-02-02 18:09:06 +0100
commitd34b9417b8104ccfaacc5ef522506c0288255c20 (patch)
treeedb181fba616b2fa20a10221579d0551a5c893a3 /README.md
parentAffed fetch.py script to use with cron. (diff)
downloadnewspipe-d34b9417b8104ccfaacc5ef522506c0288255c20.tar.gz
newspipe-d34b9417b8104ccfaacc5ef522506c0288255c20.tar.bz2
newspipe-d34b9417b8104ccfaacc5ef522506c0288255c20.zip
Updated README.
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 15 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4dbef0d1..c3700086 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ Installation
------------
You need to have installed Python >= 2.7, MongoDB and some Python libraries.
-Configuration is done via the file **conf/conf.cfg**.
+Configuration is done via the file *conf/conf.cfg*.
Launch the script ``install.sh`` in order to install automatically all requirements.
In order to prevent all dependencies problems and to keep your system stable, the libraries will be
@@ -35,10 +35,21 @@ Then point your browser to the address [http://127.0.0.1:5000/](http://127.0.0.1
*firstname.lastname@mail.com* and the password *secret*. You can update your profile at the
address [http://127.0.0.1:5000/profile/](http://127.0.0.1:5000/profile/).
-As already said, you can configure pyAggr3g470r (database name, proxy, user agent, etc.) in the file ``conf/conf.cfg``.
+As already said, you can configure pyAggr3g470r (database name, proxy, user agent, etc.) in the file *conf/conf.cfg*.
For example if you want to use pyAggr3g470r with Tor/Privoxy, you just have to set the value of
-``http_proxy`` (for example: ``http_proxy = 127.0.0.1:8118``). Else leave the value blank.
-The default configuration should be good, so you really juste have to run the script ``install.sh``.
+*http_proxy* (most of the time: ``http_proxy = 127.0.0.1:8118``). Else leave the value blank.
+
+However, the default configuration should be good, so you really just have to run the script *install.sh*.
+
+Automatic updates
+-----------------
+
+You can fetch new articles with [cron](https://en.wikipedia.org/wiki/Cron) and the script *fetch.py*.
+For example if you want to check for updates every 30 minutes, add this line to your cron rules (``crontal -e``):
+
+ */30 * * * * cd ~/.pyaggr3g470r/ ; python fetch.py firstname.lastname@mail.com
+
+You must give the email address you use to login to pyAggr3g470r.
Backup
------
bgstack15