├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── base ├── __init__.py ├── models.py ├── static │ ├── apple-touch-icon-114x114-precomposed.png │ ├── apple-touch-icon-144x144-precomposed.png │ ├── apple-touch-icon-57x57-precomposed.png │ ├── apple-touch-icon-72x72-precomposed.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── crossdomain.xml │ ├── css │ │ ├── app.css │ │ ├── h5bp.css │ │ └── style.css │ ├── favicon.ico │ ├── humans.txt │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── libs │ │ │ ├── jquery-2.1.1.min.js │ │ │ ├── less-1.2.1.min.js │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ ├── main.js │ │ └── plugins.js │ └── robots.txt ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── _layouts │ │ └── base.html │ └── base │ │ └── home.html ├── urls.py └── views.py ├── bin ├── git_precommit_pycheck.py └── jenkins.sh ├── conf ├── nginx-mime.types ├── nginx.conf ├── supervisord.conf ├── upstart.conf └── uwsgi.ini ├── db └── .keep ├── docs ├── Makefile ├── __init__.py ├── _static │ └── .keep ├── _templates │ └── .keep ├── build-github.zsh ├── conf.py ├── index.rst └── make.bat ├── fabfile.py ├── install_requirements.sh ├── lib └── .keep ├── manage.py ├── media └── .keep ├── project_name ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local-dist.py │ └── test.py ├── urls.py └── wsgi.py ├── requirements.txt ├── requirements ├── compiled.txt ├── local.txt └── production.txt └── static └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/Vagrantfile -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | """Application base, containing global templates.""" 2 | -------------------------------------------------------------------------------- /base/models.py: -------------------------------------------------------------------------------- 1 | """ Basic models, such as user profile """ 2 | -------------------------------------------------------------------------------- /base/static/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /base/static/apple-touch-icon-144x144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon-144x144-precomposed.png -------------------------------------------------------------------------------- /base/static/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /base/static/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /base/static/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /base/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/apple-touch-icon.png -------------------------------------------------------------------------------- /base/static/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/crossdomain.xml -------------------------------------------------------------------------------- /base/static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/css/app.css -------------------------------------------------------------------------------- /base/static/css/h5bp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/css/h5bp.css -------------------------------------------------------------------------------- /base/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/css/style.css -------------------------------------------------------------------------------- /base/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/favicon.ico -------------------------------------------------------------------------------- /base/static/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/humans.txt -------------------------------------------------------------------------------- /base/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /base/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /base/static/js/libs/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/js/libs/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /base/static/js/libs/less-1.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/js/libs/less-1.2.1.min.js -------------------------------------------------------------------------------- /base/static/js/libs/modernizr-2.6.2-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/js/libs/modernizr-2.6.2-respond-1.1.0.min.js -------------------------------------------------------------------------------- /base/static/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /base/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/static/js/plugins.js -------------------------------------------------------------------------------- /base/static/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /base/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/templates/403.html -------------------------------------------------------------------------------- /base/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/templates/404.html -------------------------------------------------------------------------------- /base/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/templates/500.html -------------------------------------------------------------------------------- /base/templates/_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/templates/_layouts/base.html -------------------------------------------------------------------------------- /base/templates/base/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/templates/base/home.html -------------------------------------------------------------------------------- /base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/urls.py -------------------------------------------------------------------------------- /base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/base/views.py -------------------------------------------------------------------------------- /bin/git_precommit_pycheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/bin/git_precommit_pycheck.py -------------------------------------------------------------------------------- /bin/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/bin/jenkins.sh -------------------------------------------------------------------------------- /conf/nginx-mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/conf/nginx-mime.types -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/conf/supervisord.conf -------------------------------------------------------------------------------- /conf/upstart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/conf/upstart.conf -------------------------------------------------------------------------------- /conf/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/conf/uwsgi.ini -------------------------------------------------------------------------------- /db/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build-github.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/docs/build-github.zsh -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/docs/make.bat -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/fabfile.py -------------------------------------------------------------------------------- /install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/install_requirements.sh -------------------------------------------------------------------------------- /lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/manage.py -------------------------------------------------------------------------------- /media/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | """ {{ project_name }} """ 2 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/settings/__init__.py -------------------------------------------------------------------------------- /project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/settings/base.py -------------------------------------------------------------------------------- /project_name/settings/local-dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/settings/local-dist.py -------------------------------------------------------------------------------- /project_name/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/settings/test.py -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/compiled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/requirements/compiled.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xenith/django-base-template/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /static/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------