Install postgresql from Postgresql website
Search psql
in start menu and open shell
Start postgresql shell
sudo -u postgresql psql
Create user
CREATE USER 'seetal' WITH PASSWORD 'postgres';
Create database
CREATE DATABASE 'bhoklagyo' SET PASSWORD 'postgres' OWNER seetal;
Windows
bhenv/Scripts/activate
Mac/Linux
source bhenv\Scripts\activate
Use python3
for linux/mac and python
for Windows
python -m pip install -r requirement.txt
Since psycopg2
is not supported in linux install binary
python3 -m pip install psycopg2-binary
python manage.py runserver
port
(optional)