Cookiecutter creates projects from project template. For more
virtualenv --python=python3.4 myvenv
source myenv/bin/activate
pip install cookiecutter
cookiecutter https://github.com/gautamamber/cookiecutter-django-implementation.git
project_name [Hello_world]: ----
app_name [hello_world_app]: ----
cd project_name
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver