├── .dockerignore ├── .gitignore ├── Dockerfile ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── settings.cpython-39.pyc │ ├── urls.cpython-39.pyc │ └── wsgi.cpython-39.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── manage.py └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- 1 | venv/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | db.sqlite3 3 | .idea/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /config/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /config/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /config/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hadiMh/django_course_postgresql_and_docker/HEAD/requirements.txt --------------------------------------------------------------------------------