Qabel drop server
- Python 3.4
- pip
- PostgreSQL server 9.4
- libpq-dev
virtualenv --python=python3.4 ../venvsource ../venv/bin/activatepip install -r requirements.txtcp 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.pyaccordingly