diff options
author | V.Krishn <vkrishn4@gmail.com> | 2020-01-29 16:41:15 +0530 |
---|---|---|
committer | V.Krishn <vkrishn4@gmail.com> | 2020-01-29 16:41:15 +0530 |
commit | 4d6b36e81ec07fc6ec8d5c4c1fa464e3cd934ddb (patch) | |
tree | b24729d52c26487677e75c4aa1a10defa2564808 | |
parent | 2d75b643d6de303e83cd73c9cbd2967e91b42375 (diff) | |
download | nbreader-4d6b36e81ec07fc6ec8d5c4c1fa464e3cd934ddb.tar.bz2 |
fix broken image links
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | doc/install.md | 2 | ||||
-rw-r--r-- | run.sh | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -31,9 +31,9 @@ _NOTE: Beta-release_ 9. Rest api for accessing via web (json). 10. Convert existing newsbeuter db to nbreader format (experimental). - + - + ## Why a hybrid application diff --git a/doc/install.md b/doc/install.md index e8c9d60..7706cfd 100644 --- a/doc/install.md +++ b/doc/install.md @@ -6,7 +6,7 @@ 2. Download 3rd party libs/css used in application, extract libs content it in `public/lib/` accordingly. -_For convenience the bundle can be found at `http://dev1.insteps.net/nbreader/lib.tar.gz`_ +_For convenience the bundle can be found at `http://download.tuxfamily.org/pmreader/nb/lib.01-20200129.tar.gz`_ ## B. Configs @@ -29,8 +29,6 @@ PWD=$(pwd) source $APPDIR/scripts/env.sh source $APPDIR/scripts/date.inc -## examples/execs -# newsbeuter -u urls -c u.db -x reload #usage: sh run.sh newsbeuter <dbname> if [ "$1" = 'newsbeuter' ]; then @@ -48,6 +46,8 @@ if [ "$1" = 'newsbeuter' ]; then db='news'; fi if [ -f "$DBDIR/$db.loc.db" ]; then + ## examples/execs + # newsbeuter -u urls -c u.db -x reload newsbeuter -u "$CONFIGDIR/url.local/$db" -c $DBDIR/$db.loc.db fi fi |