-
Create a python virtual environment and install python dependencies.
cd evalaivirtualenv venvsource venv/bin/activate # run this command everytime before working on projectpip install -r requirements/dev.txt
-
Change Postgresql credentials in
settings/dev.py
and run migrationsUse your postgres username and password for fields
USER
andPASSWORD
indev.py
file. After changing credentials, run migrations using the following command:even/bin/python manage.py migrate --settings=settings.dev