aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 21:31:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-04-05 21:31:12 +0200
commit763f9e00754b10911f34bfa4292feb089a4c6bbb (patch)
tree10cf81c8dcbb3c5d0fc102149b0835c446945977 /install.sh
parentUpdated signup form. (diff)
downloadnewspipe-763f9e00754b10911f34bfa4292feb089a4c6bbb.tar.gz
newspipe-763f9e00754b10911f34bfa4292feb089a4c6bbb.tar.bz2
newspipe-763f9e00754b10911f34bfa4292feb089a4c6bbb.zip
Updated install script.
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh55
1 files changed, 9 insertions, 46 deletions
diff --git a/install.sh b/install.sh
index 43ddd96a..1733c718 100644
--- a/install.sh
+++ b/install.sh
@@ -7,54 +7,20 @@
#
-sudo apt-get install -y build-essential git wget > /dev/null
-sudo apt-get install -y libxml2-dev libxslt1-dev > /dev/null # for lxml
-sudo apt-get install -y libssl-dev openssl > /dev/null # for pip
+sudo apt-get install npm
+pipenv install
+npm install
-
-PYTHON_VERSION=3.6.4
-echo "Installation of Python..."
-if [ "$1" == postgres ]; then
- sudo apt-get install -y libpq-dev > /dev/null
-elif [ "$1" == sqlite ]; then
- sudo apt-get install -y libsqlite3-dev > /dev/null
-fi
-wget https://www.python.org/ftp/python/$PYTHON_VERSION/Python-$PYTHON_VERSION.tar.xz
-tar -xf Python-$PYTHON_VERSION.tar.xz
-rm Python-$PYTHON_VERSION.tar.xz
-cd Python-$PYTHON_VERSION/
-export PYTHONHOME=/usr/local/
-export LD_RUN_PATH=/usr/local/lib/
-./configure --enable-loadable-sqlite-extensions --enable-shared --enable-optimizations
-make
-sudo make install
-cd ..
-sudo rm -Rf Python-$PYTHON_VERSION/
-
-
-
-PYTHON_VERSION=3.6
-echo "Installing required Python libraries..."
-sed -i '/psycopg2/d' requirements.txt > /dev/null
-sudo pip$PYTHON_VERSION install --upgrade pip > /dev/null
-sudo pip$PYTHON_VERSION install --upgrade -r requirements.txt > /dev/null
-
-
-
-# Initializes the configuration file
cp src/conf/conf.cfg-sample src/conf/conf.cfg
# Delete default database configuration
sed -i '/database/d' src/conf/conf.cfg
sed -i '/database_url/d' src/conf/conf.cfg
-
-
# Configuration of the database
if [ "$1" == postgres ]; then
echo "Installing requirements for PostgreSQL..."
- sudo apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client > /dev/null
- sudo pip$PYTHON_VERSION install psycopg2 > /dev/null
+ sudo apt-get install -y postgresql > /dev/null
echo "Configuring the database..."
echo "127.0.0.1:5433:aggregator:pgsqluser:pgsqlpwd" > ~/.pgpass
chmod 0600 ~/.pgpass
@@ -74,14 +40,11 @@ elif [ "$1" == sqlite ]; then
echo 'database_url = sqlite:///newspipe.db' >> src/conf/conf.cfg
fi
-
+pipenv shell
echo "Initialization of the database..."
-python$PYTHON_VERSION src/manager.py db_empty
-python$PYTHON_VERSION src/manager.py db_create
-
-
+python src/manager.py db_empty
+python src/manager.py db_create
-echo "Installation terminated."
-echo "Launch Newspipe with the command:"
-echo -e "\tpython$PYTHON_VERSION src/runserver.py"
+echo "Launching Newspipe..."
+python src/runserver.py
bgstack15