├── .gitignore ├── README.md ├── Vagrantfile ├── debian ├── compat ├── control ├── etc │ ├── init │ │ └── django_app.conf │ ├── nginx │ │ └── sites-enabled │ │ │ └── django_app.conf │ └── uwsgi │ │ └── django_app.ini ├── helloworld.substvars ├── helloworld.triggers ├── install ├── postinst └── rules ├── fabfile.py ├── requirements.txt ├── setup.py ├── src ├── helloworld │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── manage.py └── vagrant ├── bootstrap_packaging_box.sh ├── bootstrap_test_box.sh └── devpi.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/Vagrantfile -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/control -------------------------------------------------------------------------------- /debian/etc/init/django_app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/etc/init/django_app.conf -------------------------------------------------------------------------------- /debian/etc/nginx/sites-enabled/django_app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/etc/nginx/sites-enabled/django_app.conf -------------------------------------------------------------------------------- /debian/etc/uwsgi/django_app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/etc/uwsgi/django_app.ini -------------------------------------------------------------------------------- /debian/helloworld.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/helloworld.substvars -------------------------------------------------------------------------------- /debian/helloworld.triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/helloworld.triggers -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/debian/rules -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/fabfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/setup.py -------------------------------------------------------------------------------- /src/helloworld/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helloworld/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/src/helloworld/settings.py -------------------------------------------------------------------------------- /src/helloworld/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/src/helloworld/urls.py -------------------------------------------------------------------------------- /src/helloworld/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/src/helloworld/wsgi.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/src/manage.py -------------------------------------------------------------------------------- /vagrant/bootstrap_packaging_box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/vagrant/bootstrap_packaging_box.sh -------------------------------------------------------------------------------- /vagrant/bootstrap_test_box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/vagrant/bootstrap_test_box.sh -------------------------------------------------------------------------------- /vagrant/devpi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeinthehole/django-in-a-deb-file/HEAD/vagrant/devpi.conf --------------------------------------------------------------------------------