A django project for https://hamband.math.sharif.edu
- Create a virtualenv with
python -m env venv
- Activate virtualenv with
source venv/bin/activate
- Install requirements with
pip install -r requirements.txt
- Copy settings from
base/local_settings.sample.py
tobase/local_settings.py
. - Migrate database with
python3 manage.py migrate
. - You can also populate database for testing with
python3 manage.py seed
- Run it with
python3 manage.py runserver
:)