├── .dockerignore ├── .gitattributes ├── .gitignore ├── Dockerfile ├── README.md ├── certbot ├── Dockerfile └── certify-init.sh ├── core ├── __init__.py ├── asgi.py ├── is_available.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.prod.yml ├── docker-compose.yml ├── docker ├── entrypoint.sh └── start.sh ├── manage.py ├── nginx ├── Dockerfile ├── manager.sh ├── nginx.conf ├── nginx.dev.conf └── nginx.prod.conf ├── requirements.txt ├── template.dev.env └── template.prod.env /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/README.md -------------------------------------------------------------------------------- /certbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/certbot/Dockerfile -------------------------------------------------------------------------------- /certbot/certify-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/certbot/certify-init.sh -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/is_available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/core/is_available.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/docker/start.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/manage.py -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/nginx/manager.sh -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/nginx/nginx.dev.conf -------------------------------------------------------------------------------- /nginx/nginx.prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/nginx/nginx.prod.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /template.dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/template.dev.env -------------------------------------------------------------------------------- /template.prod.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdeathway/headstart-django/HEAD/template.prod.env --------------------------------------------------------------------------------