aboutsummaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-24 21:51:38 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-24 21:51:38 +0100
commit385c6cb95059e3aac04c85036de968c9ddc029ed (patch)
treefa9347fcf228949ad6fac245df39b4f5bc0ea5db /documentation
parentAdded a script to install pyAggr3g470r on a server. (diff)
downloadnewspipe-385c6cb95059e3aac04c85036de968c9ddc029ed.tar.gz
newspipe-385c6cb95059e3aac04c85036de968c9ddc029ed.tar.bz2
newspipe-385c6cb95059e3aac04c85036de968c9ddc029ed.zip
Improved the installation script (not yet tested).
Diffstat (limited to 'documentation')
-rw-r--r--documentation/deployment.rst27
1 files changed, 4 insertions, 23 deletions
diff --git a/documentation/deployment.rst b/documentation/deployment.rst
index 6d1b119c..c95dfe91 100644
--- a/documentation/deployment.rst
+++ b/documentation/deployment.rst
@@ -82,39 +82,20 @@ Deploying the application on a traditional server
.. code-block:: bash
$ git clone https://bitbucket.org/cedricbonhomme/pyaggr3g470r.git
- $ cd pyaggr3g470r
- $ ./install.sh
+ $ cd pyaggr3g470r/
If you want to use PostgreSQL
'''''''''''''''''''''''''''''
-
.. code-block:: bash
- $ sudo apt-get install postgresql postgresql-server-dev-9.3 postgresql-client
- $ sudo pip install psycopg2
- $ echo "127.0.0.1:5432:aggregator:pgsqluser:pgsqlpwd" > ~/.pgpass
- $ chmod 700 ~/.pgpass
- $ sudo -u postgres createuser pgsqluser --no-superuser --createdb --no-createrole
- $ createdb aggregator --no-password
- $ echo "ALTER USER pgsqluser WITH ENCRYPTED PASSWORD 'pgsqlpwd';" | sudo -u postgres psql
- $ echo "GRANT ALL PRIVILEGES ON DATABASE aggregator TO pgsqluser;" | sudo -u postgres psql
-
-Edit the configuration file with the line:
-
-.. code-block:: cfg
-
- [database]
- uri = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5433/aggregator
+ $ ./install.sh postgre
If you want to use SQLite
'''''''''''''''''''''''''
-Just edit the configuration file with the line:
-
-.. code-block:: cfg
+.. code-block:: bash
- [database]
- uri = sqlite+pysqlite:///pyAggr3g470r.db
+ $ ./install.sh sqlite
Finally:
bgstack15