Django tutorial from the official documentation. (with some additional tests)
More in:
https://docs.djangoproject.com/en/1.10/intro/tutorial01/
- Clone the repository
- Create a virtualenv with Python 3.5
- Activate virtualenv
- Install the dependencies
- Execute tests.
git clone git@github.com:henriquebraga/django-tutorial.git django-tutorial
cd django-tutorial
pytho -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp contrib/env-sample .env
python manage.py test