This skeleton for Django and python CLI projects. It provides a directory structure for projects during development and deployment.
Make sure you have Django >= 1.9 installed.
> django-admin startproject myproject --template=https://github.com/timotheus/python-skeleton/archive/master.zip --extension=py,ini,in,yaml
Once you've successfully started the Django project using the skeleton template, you'll need create the virtualenv and install a few Python dependancies.
> cd myproject
> virtualenv venv36 -p <path to python36>
> source venv36/bin/activate
> pip install -r requirements.txt
> python manage.py runserver
- Tim Keefer [email protected]