- Create a
picsous/local_settings.py
to configure your own local settings (DATABASES settings, Ginger key, Payutc key) - (Recommended) Create a virtual python environment with
virtualenv env
thensource 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
.