├── .gitattributes ├── Dockerfile ├── README.md ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── admin.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── tasks.cpython-39.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc ├── models.py ├── tasks.py ├── tests.py └── views.py ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── celery.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── docker-compose.yml ├── manage.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/.gitattributes -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # YT-Django-Docker-Compose-Celery-Redis-PostgreSQL 2 | 3 | -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/tasks.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/__pycache__/tasks.cpython-39.pyc -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/models.py -------------------------------------------------------------------------------- /app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/tasks.py -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__init__.py -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /core/__pycache__/celery.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__pycache__/celery.cpython-39.pyc -------------------------------------------------------------------------------- /core/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /core/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /core/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /core/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/asgi.py -------------------------------------------------------------------------------- /core/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/celery.py -------------------------------------------------------------------------------- /core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/settings.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/core/wsgi.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT-Django-Docker-Compose-Celery-Redis-PostgreSQL/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=3.0,<4.0 2 | psycopg2-binary>=2.8 3 | celery 4 | redis --------------------------------------------------------------------------------