├── .gitignore ├── Dockerfile ├── README.MD ├── apps ├── __init__.py ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── routing.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── viewsets.py ├── main │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py └── utils │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── choices.py │ ├── colors.py │ ├── email.py │ ├── errors.py │ ├── exceptions.py │ ├── forms.py │ ├── managers.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── redis.py │ ├── shortcuts.py │ ├── sms.py │ ├── tests.py │ ├── views.py │ └── viewsets.py ├── docker-compose.yml ├── env_template ├── manage.py ├── project ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── run_collect_static.sh ├── run_create_user.sh ├── run_migrate.sh ├── run_theme.sh ├── setup ├── nginx │ ├── api │ │ └── default.conf │ └── full │ │ └── default.conf └── themes │ ├── bt.json │ ├── dj.json │ ├── fd.json │ ├── start.json │ └── usw.json └── templates └── errors ├── 400.html ├── 403.html ├── 404.html └── 500.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/README.MD -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/admin.py -------------------------------------------------------------------------------- /apps/accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/apps.py -------------------------------------------------------------------------------- /apps/accounts/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/consumers.py -------------------------------------------------------------------------------- /apps/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/forms.py -------------------------------------------------------------------------------- /apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/models.py -------------------------------------------------------------------------------- /apps/accounts/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/routing.py -------------------------------------------------------------------------------- /apps/accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/serializers.py -------------------------------------------------------------------------------- /apps/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/tests.py -------------------------------------------------------------------------------- /apps/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/urls.py -------------------------------------------------------------------------------- /apps/accounts/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/accounts/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/accounts/viewsets.py -------------------------------------------------------------------------------- /apps/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/main/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/main/admin.py -------------------------------------------------------------------------------- /apps/main/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/main/apps.py -------------------------------------------------------------------------------- /apps/main/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/main/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/main/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/main/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/main/models.py -------------------------------------------------------------------------------- /apps/main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/main/tests.py -------------------------------------------------------------------------------- /apps/main/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /apps/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/admin.py -------------------------------------------------------------------------------- /apps/utils/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/apps.py -------------------------------------------------------------------------------- /apps/utils/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/choices.py -------------------------------------------------------------------------------- /apps/utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/colors.py -------------------------------------------------------------------------------- /apps/utils/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/email.py -------------------------------------------------------------------------------- /apps/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/errors.py -------------------------------------------------------------------------------- /apps/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/exceptions.py -------------------------------------------------------------------------------- /apps/utils/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/forms.py -------------------------------------------------------------------------------- /apps/utils/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/managers.py -------------------------------------------------------------------------------- /apps/utils/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/models.py -------------------------------------------------------------------------------- /apps/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/permissions.py -------------------------------------------------------------------------------- /apps/utils/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/redis.py -------------------------------------------------------------------------------- /apps/utils/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/shortcuts.py -------------------------------------------------------------------------------- /apps/utils/sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/sms.py -------------------------------------------------------------------------------- /apps/utils/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/tests.py -------------------------------------------------------------------------------- /apps/utils/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | -------------------------------------------------------------------------------- /apps/utils/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/apps/utils/viewsets.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/env_template -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/manage.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/__init__.py -------------------------------------------------------------------------------- /project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/asgi.py -------------------------------------------------------------------------------- /project/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/celery.py -------------------------------------------------------------------------------- /project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/settings.py -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/project/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_collect_static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/run_collect_static.sh -------------------------------------------------------------------------------- /run_create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/run_create_user.sh -------------------------------------------------------------------------------- /run_migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/run_migrate.sh -------------------------------------------------------------------------------- /run_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/run_theme.sh -------------------------------------------------------------------------------- /setup/nginx/api/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/nginx/api/default.conf -------------------------------------------------------------------------------- /setup/nginx/full/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/nginx/full/default.conf -------------------------------------------------------------------------------- /setup/themes/bt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/themes/bt.json -------------------------------------------------------------------------------- /setup/themes/dj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/themes/dj.json -------------------------------------------------------------------------------- /setup/themes/fd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/themes/fd.json -------------------------------------------------------------------------------- /setup/themes/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/themes/start.json -------------------------------------------------------------------------------- /setup/themes/usw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/setup/themes/usw.json -------------------------------------------------------------------------------- /templates/errors/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/templates/errors/400.html -------------------------------------------------------------------------------- /templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/templates/errors/403.html -------------------------------------------------------------------------------- /templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/templates/errors/404.html -------------------------------------------------------------------------------- /templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osw4l/django-docker-full/HEAD/templates/errors/500.html --------------------------------------------------------------------------------