├── .gitignore ├── Procfile ├── README.md ├── docs ├── Makefile └── source │ ├── _static │ ├── computer-stare.png │ ├── flip.png │ ├── happy-big-smile.png │ ├── happy-overload.png │ ├── happy.png │ ├── lets-do-this.jpg │ ├── not-bad.png │ ├── skel.jpg │ └── yeah.png │ ├── conf.py │ ├── developing.rst │ ├── getting-started.rst │ ├── index.rst │ ├── layout.rst │ ├── prerequisites.rst │ └── running-on-heroku.rst ├── fabfile.py ├── gunicorn.py.ini ├── manage.py ├── project_name ├── __init__.py ├── apps │ └── __init__.py ├── libs │ └── __init__.py ├── settings │ ├── __init__.py │ ├── common.py │ ├── dev.py │ └── prod.py ├── templates │ ├── 404.html │ └── 500.html └── urls.py ├── reqs ├── common.txt ├── dev.txt └── prod.txt ├── requirements.txt ├── runtime.txt └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/computer-stare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/computer-stare.png -------------------------------------------------------------------------------- /docs/source/_static/flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/flip.png -------------------------------------------------------------------------------- /docs/source/_static/happy-big-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/happy-big-smile.png -------------------------------------------------------------------------------- /docs/source/_static/happy-overload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/happy-overload.png -------------------------------------------------------------------------------- /docs/source/_static/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/happy.png -------------------------------------------------------------------------------- /docs/source/_static/lets-do-this.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/lets-do-this.jpg -------------------------------------------------------------------------------- /docs/source/_static/not-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/not-bad.png -------------------------------------------------------------------------------- /docs/source/_static/skel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/skel.jpg -------------------------------------------------------------------------------- /docs/source/_static/yeah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/_static/yeah.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/developing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/developing.rst -------------------------------------------------------------------------------- /docs/source/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/getting-started.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/layout.rst -------------------------------------------------------------------------------- /docs/source/prerequisites.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/prerequisites.rst -------------------------------------------------------------------------------- /docs/source/running-on-heroku.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/docs/source/running-on-heroku.rst -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/fabfile.py -------------------------------------------------------------------------------- /gunicorn.py.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/gunicorn.py.ini -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/manage.py -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/project_name/settings/common.py -------------------------------------------------------------------------------- /project_name/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/project_name/settings/dev.py -------------------------------------------------------------------------------- /project_name/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/project_name/settings/prod.py -------------------------------------------------------------------------------- /project_name/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/templates/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /reqs/common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/reqs/common.txt -------------------------------------------------------------------------------- /reqs/dev.txt: -------------------------------------------------------------------------------- 1 | -r common.txt 2 | django-debug-toolbar==0.9.4 3 | -------------------------------------------------------------------------------- /reqs/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/reqs/prod.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -r reqs/prod.txt 2 | pylibmc==1.2.3 3 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.4 2 | -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdegges/django-skel/HEAD/wsgi.py --------------------------------------------------------------------------------