diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-20 23:35:20 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-20 23:35:20 +0200 |
commit | d468e262780935320b3ee22c273e150a3345ec2f (patch) | |
tree | 40c72b9f1cfeca4e1b1e0ef24a37862b9ad902d9 | |
parent | Link to about page is not only visible for the administrator. (diff) | |
download | newspipe-d468e262780935320b3ee22c273e150a3345ec2f.tar.gz newspipe-d468e262780935320b3ee22c273e150a3345ec2f.tar.bz2 newspipe-d468e262780935320b3ee22c273e150a3345ec2f.zip |
Fixed the default configuration file. Minor update to the install.sh script.
-rw-r--r-- | conf/conf.cfg-sample | 2 | ||||
-rwxr-xr-x | install.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/conf/conf.cfg-sample b/conf/conf.cfg-sample index 7b28df14..76a91323 100644 --- a/conf/conf.cfg-sample +++ b/conf/conf.cfg-sample @@ -8,7 +8,7 @@ python = python3.3 nb_worker = 5 log_level = info [database] -DATABASE_URL = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator +database_url = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator [feedparser] http_proxy = user_agent = pyAggr3g470r (https://bitbucket.org/cedricbonhomme/pyaggr3g470r) @@ -16,7 +16,7 @@ cp conf/conf.cfg-sample conf/conf.cfg # Delete default database configuration sed -i '/database/d' conf/conf.cfg -sed -i '/uri/d' conf/conf.cfg +sed -i '/database_url/d' conf/conf.cfg if [ "$1" == postgres ]; then sudo apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client @@ -30,12 +30,12 @@ if [ "$1" == postgres ]; then # Add configuration lines for PostgreSQL echo '[database]' >> conf/conf.cfg - echo 'uri = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator' >> conf/conf.cfg + echo 'database_url = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator' >> conf/conf.cfg elif [ "$1" == sqlite ]; then sudo pip install pysqlite # not working with Python 3! # Add configuration lines for SQLite echo '[database]' >> conf/conf.cfg - echo 'uri = sqlite+pysqlite:///pyAggr3g470r.db' >> conf/conf.cfg + echo 'database_url = sqlite+pysqlite:///pyAggr3g470r.db' >> conf/conf.cfg fi python manager.py db_empty |