- Django == 2.0.2
- Postgres == 9.6.7
- Python == 3.6.3
- Activate your environment
- Install requirements:
- $ pip install -r requirements.txt
- Go to assets/ and install the frontend packages:
- $ cd assets/
- $ npm install
- $ sudo su - postgres psql
- CREATE USER username WITH PASSWORD 'password';
- CREATE DATABASE databasename;
- GRANT ALL PRIVILEGES ON DATABASE databasename TO username;