├── README.rst ├── manage.py ├── project_name ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── development.py │ └── production.py ├── urls.py └── wsgi.py ├── requirements ├── base.txt ├── development.txt └── production.txt ├── static ├── css │ └── global.css └── js │ └── global.js └── templates ├── 404.html ├── 500.html └── base.html /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/manage.py -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/project_name/settings/base.py -------------------------------------------------------------------------------- /project_name/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/project_name/settings/development.py -------------------------------------------------------------------------------- /project_name/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/project_name/settings/production.py -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | -------------------------------------------------------------------------------- /static/css/global.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/global.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- 1 |

Page not found

2 | -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- 1 |

Internal Sever Error

2 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/django-project-skeleton/HEAD/templates/base.html --------------------------------------------------------------------------------