├── .gitignore ├── LICENSE ├── README.md ├── externals ├── apps │ └── README.md └── libs │ └── README.md ├── locale ├── .gitkeep └── de │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── myproject ├── __init__.py ├── apps │ ├── __init__.py │ └── core │ │ ├── __init__.py │ │ └── versioning.py ├── settings │ ├── __init__.py │ ├── _base.py │ ├── dev.py │ ├── production.py │ ├── sample_secrets.json │ ├── staging.py │ └── test.py ├── site_static │ └── site │ │ ├── css │ │ └── style.css │ │ ├── img │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ │ ├── js │ │ └── main.js │ │ └── scss │ │ └── style.scss ├── templates │ ├── base.html │ └── index.html ├── urls.py ├── wsgi.py ├── wsgi_production.py └── wsgi_staging.py └── requirements ├── _base.txt ├── dev.txt ├── production.txt ├── staging.txt └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/README.md -------------------------------------------------------------------------------- /externals/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/externals/apps/README.md -------------------------------------------------------------------------------- /externals/libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/externals/libs/README.md -------------------------------------------------------------------------------- /locale/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/manage.py -------------------------------------------------------------------------------- /myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/apps/core/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/apps/core/versioning.py -------------------------------------------------------------------------------- /myproject/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/settings/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/settings/_base.py -------------------------------------------------------------------------------- /myproject/settings/dev.py: -------------------------------------------------------------------------------- 1 | from ._base import * 2 | 3 | DEBUG = True 4 | -------------------------------------------------------------------------------- /myproject/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/settings/production.py -------------------------------------------------------------------------------- /myproject/settings/sample_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/settings/sample_secrets.json -------------------------------------------------------------------------------- /myproject/settings/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/settings/staging.py -------------------------------------------------------------------------------- /myproject/settings/test.py: -------------------------------------------------------------------------------- 1 | from ._base import * 2 | 3 | DEBUG = True 4 | -------------------------------------------------------------------------------- /myproject/site_static/site/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/site_static/site/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/site_static/site/img/favicon-16x16.png -------------------------------------------------------------------------------- /myproject/site_static/site/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/site_static/site/img/favicon-32x32.png -------------------------------------------------------------------------------- /myproject/site_static/site/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/site_static/site/img/favicon.ico -------------------------------------------------------------------------------- /myproject/site_static/site/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/site_static/site/scss/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myproject/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/templates/base.html -------------------------------------------------------------------------------- /myproject/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/templates/index.html -------------------------------------------------------------------------------- /myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/urls.py -------------------------------------------------------------------------------- /myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/wsgi.py -------------------------------------------------------------------------------- /myproject/wsgi_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/wsgi_production.py -------------------------------------------------------------------------------- /myproject/wsgi_staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/myproject/wsgi_staging.py -------------------------------------------------------------------------------- /requirements/_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archatas/django-myproject/HEAD/requirements/_base.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -r _base.txt 2 | coverage==4.5.3 3 | -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | -r _base.txt 2 | gunicorn==19.7.1 3 | -------------------------------------------------------------------------------- /requirements/staging.txt: -------------------------------------------------------------------------------- 1 | -r _base.txt 2 | gunicorn==19.7.1 3 | -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- 1 | -r _base.txt 2 | coverage==4.5.3 3 | --------------------------------------------------------------------------------