Qabel drop server
- Python 3.4
- pip
- PostgreSQL server 9.4
- libpq-dev
virtualenv --python=python3.4 ../venv
source ../venv/bin/activate
pip install -r requirements.txt
cp config.py.example config.py
- Create the database and a user inside PostgreSQL
CREATE DATABASE 'qabel_drop'
CREATE USER qabel WITH PASSWORD 'qabel_test'
GRANT ALL PRIVILEGES ON DATABASE qabel_drop TO qabel
- You should change the database name, the username and the password for production, do not forget to change the
config.py
accordingly