├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── core ├── __init__.py ├── models.py ├── static │ ├── css │ │ └── .gitkeep │ ├── images │ │ └── .gitkeep │ ├── js │ │ └── jquery-1.9.1.js │ └── lib │ │ └── .gitkeep ├── templates │ └── base.html ├── tests.py └── views.py ├── etc └── install │ ├── bashrc │ ├── etc-bash.bashrc │ └── install.sh ├── manage.py ├── project_name ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ ├── local.py.example │ └── production.py ├── urls.py └── wsgi.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant 2 | /static 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/Vagrantfile -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/models.py -------------------------------------------------------------------------------- /core/static/css/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/static/css/.gitkeep -------------------------------------------------------------------------------- /core/static/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/static/images/.gitkeep -------------------------------------------------------------------------------- /core/static/js/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/static/js/jquery-1.9.1.js -------------------------------------------------------------------------------- /core/static/lib/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/static/lib/.gitkeep -------------------------------------------------------------------------------- /core/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/templates/base.html -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /etc/install/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/etc/install/bashrc -------------------------------------------------------------------------------- /etc/install/etc-bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/etc/install/etc-bash.bashrc -------------------------------------------------------------------------------- /etc/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/etc/install/install.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/manage.py -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .dev import * 2 | -------------------------------------------------------------------------------- /project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/settings/base.py -------------------------------------------------------------------------------- /project_name/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/settings/dev.py -------------------------------------------------------------------------------- /project_name/settings/local.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/settings/local.py.example -------------------------------------------------------------------------------- /project_name/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/settings/production.py -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torchbox/vagrant-django-template/HEAD/requirements.txt --------------------------------------------------------------------------------