- Create a
picsous/local_settings.pyto configure your own local settings (DATABASES settings, Ginger key, Payutc key) - (Recommended) Create a virtual python environment with
virtualenv envthensource env/bin/activate. If virtualenv isn't installed yet, install it withsudo pip install virtualenv. - Install requirements with
pip install -r requirements.txt. - Launch migrations with
python manage.py migrate. - Run server with
python manage.py runserver 0.0.0.0:8090(for port 8090).
To launch the Django interactive shell to interact with the database, type python manage.py shell_plus.