diff --git a/services/auth/.cruft.json b/auth/.cruft.json similarity index 100% rename from services/auth/.cruft.json rename to auth/.cruft.json diff --git a/services/auth/.dockerignore b/auth/.dockerignore similarity index 100% rename from services/auth/.dockerignore rename to auth/.dockerignore diff --git a/services/auth/.env.example b/auth/.env.example similarity index 100% rename from services/auth/.env.example rename to auth/.env.example diff --git a/services/auth/.flake8 b/auth/.flake8 similarity index 100% rename from services/auth/.flake8 rename to auth/.flake8 diff --git a/services/auth/.gitignore b/auth/.gitignore similarity index 100% rename from services/auth/.gitignore rename to auth/.gitignore diff --git a/services/auth/README.MD b/auth/README.MD similarity index 100% rename from services/auth/README.MD rename to auth/README.MD diff --git a/services/auth/config/__init__.py b/auth/config/__init__.py similarity index 100% rename from services/auth/config/__init__.py rename to auth/config/__init__.py diff --git a/services/auth/config/asgi.py b/auth/config/asgi.py similarity index 100% rename from services/auth/config/asgi.py rename to auth/config/asgi.py diff --git a/services/auth/config/celery.py b/auth/config/celery.py similarity index 100% rename from services/auth/config/celery.py rename to auth/config/celery.py diff --git a/services/auth/config/conf/__init__.py b/auth/config/conf/__init__.py similarity index 100% rename from services/auth/config/conf/__init__.py rename to auth/config/conf/__init__.py diff --git a/services/auth/config/conf/apps.py b/auth/config/conf/apps.py similarity index 100% rename from services/auth/config/conf/apps.py rename to auth/config/conf/apps.py diff --git a/services/auth/config/conf/cache.py b/auth/config/conf/cache.py similarity index 100% rename from services/auth/config/conf/cache.py rename to auth/config/conf/cache.py diff --git a/services/auth/config/conf/celery.py b/auth/config/conf/celery.py similarity index 100% rename from services/auth/config/conf/celery.py rename to auth/config/conf/celery.py diff --git a/services/auth/config/conf/channels.py b/auth/config/conf/channels.py similarity index 100% rename from services/auth/config/conf/channels.py rename to auth/config/conf/channels.py diff --git a/services/auth/config/conf/ckeditor.py b/auth/config/conf/ckeditor.py similarity index 100% rename from services/auth/config/conf/ckeditor.py rename to auth/config/conf/ckeditor.py diff --git a/services/auth/config/conf/cron.py b/auth/config/conf/cron.py similarity index 100% rename from services/auth/config/conf/cron.py rename to auth/config/conf/cron.py diff --git a/services/auth/config/conf/jwt.py b/auth/config/conf/jwt.py similarity index 100% rename from services/auth/config/conf/jwt.py rename to auth/config/conf/jwt.py diff --git a/services/auth/config/conf/logs.py b/auth/config/conf/logs.py similarity index 100% rename from services/auth/config/conf/logs.py rename to auth/config/conf/logs.py diff --git a/services/auth/config/conf/modules.py b/auth/config/conf/modules.py similarity index 100% rename from services/auth/config/conf/modules.py rename to auth/config/conf/modules.py diff --git a/services/auth/config/conf/navigation.py b/auth/config/conf/navigation.py similarity index 100% rename from services/auth/config/conf/navigation.py rename to auth/config/conf/navigation.py diff --git a/services/auth/config/conf/rest_framework.py b/auth/config/conf/rest_framework.py similarity index 100% rename from services/auth/config/conf/rest_framework.py rename to auth/config/conf/rest_framework.py diff --git a/services/auth/config/conf/spectacular.py b/auth/config/conf/spectacular.py similarity index 100% rename from services/auth/config/conf/spectacular.py rename to auth/config/conf/spectacular.py diff --git a/services/auth/config/conf/storage.py b/auth/config/conf/storage.py similarity index 100% rename from services/auth/config/conf/storage.py rename to auth/config/conf/storage.py diff --git a/services/auth/config/conf/unfold.py b/auth/config/conf/unfold.py similarity index 100% rename from services/auth/config/conf/unfold.py rename to auth/config/conf/unfold.py diff --git a/services/auth/config/env.py b/auth/config/env.py similarity index 100% rename from services/auth/config/env.py rename to auth/config/env.py diff --git a/services/auth/config/settings/__init__.py b/auth/config/settings/__init__.py similarity index 100% rename from services/auth/config/settings/__init__.py rename to auth/config/settings/__init__.py diff --git a/services/auth/config/settings/common.py b/auth/config/settings/common.py similarity index 100% rename from services/auth/config/settings/common.py rename to auth/config/settings/common.py diff --git a/services/auth/config/settings/local.py b/auth/config/settings/local.py similarity index 100% rename from services/auth/config/settings/local.py rename to auth/config/settings/local.py diff --git a/services/auth/config/settings/production.py b/auth/config/settings/production.py similarity index 100% rename from services/auth/config/settings/production.py rename to auth/config/settings/production.py diff --git a/services/auth/config/urls.py b/auth/config/urls.py similarity index 100% rename from services/auth/config/urls.py rename to auth/config/urls.py diff --git a/services/auth/config/wsgi.py b/auth/config/wsgi.py similarity index 100% rename from services/auth/config/wsgi.py rename to auth/config/wsgi.py diff --git a/services/auth/core/__init__.py b/auth/core/__init__.py similarity index 100% rename from services/auth/core/__init__.py rename to auth/core/__init__.py diff --git a/services/auth/core/apps/__init__.py b/auth/core/apps/__init__.py similarity index 100% rename from services/auth/core/apps/__init__.py rename to auth/core/apps/__init__.py diff --git a/services/auth/core/apps/accounts/__init__.py b/auth/core/apps/accounts/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/__init__.py rename to auth/core/apps/accounts/__init__.py diff --git a/services/auth/core/apps/accounts/admin/__init__.py b/auth/core/apps/accounts/admin/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/admin/__init__.py rename to auth/core/apps/accounts/admin/__init__.py diff --git a/services/auth/core/apps/accounts/admin/core.py b/auth/core/apps/accounts/admin/core.py similarity index 100% rename from services/auth/core/apps/accounts/admin/core.py rename to auth/core/apps/accounts/admin/core.py diff --git a/services/auth/core/apps/accounts/admin/user.py b/auth/core/apps/accounts/admin/user.py similarity index 100% rename from services/auth/core/apps/accounts/admin/user.py rename to auth/core/apps/accounts/admin/user.py diff --git a/services/auth/core/apps/accounts/apps.py b/auth/core/apps/accounts/apps.py similarity index 100% rename from services/auth/core/apps/accounts/apps.py rename to auth/core/apps/accounts/apps.py diff --git a/services/auth/core/apps/accounts/choices/__init__.py b/auth/core/apps/accounts/choices/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/choices/__init__.py rename to auth/core/apps/accounts/choices/__init__.py diff --git a/services/auth/core/apps/accounts/choices/user.py b/auth/core/apps/accounts/choices/user.py similarity index 100% rename from services/auth/core/apps/accounts/choices/user.py rename to auth/core/apps/accounts/choices/user.py diff --git a/services/auth/core/apps/accounts/managers/__init__.py b/auth/core/apps/accounts/managers/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/managers/__init__.py rename to auth/core/apps/accounts/managers/__init__.py diff --git a/services/auth/core/apps/accounts/managers/user.py b/auth/core/apps/accounts/managers/user.py similarity index 100% rename from services/auth/core/apps/accounts/managers/user.py rename to auth/core/apps/accounts/managers/user.py diff --git a/services/auth/core/apps/accounts/migrations/0001_initial.py b/auth/core/apps/accounts/migrations/0001_initial.py similarity index 100% rename from services/auth/core/apps/accounts/migrations/0001_initial.py rename to auth/core/apps/accounts/migrations/0001_initial.py diff --git a/services/auth/core/apps/accounts/migrations/__init__.py b/auth/core/apps/accounts/migrations/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/migrations/__init__.py rename to auth/core/apps/accounts/migrations/__init__.py diff --git a/services/auth/core/apps/accounts/models/__init__.py b/auth/core/apps/accounts/models/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/models/__init__.py rename to auth/core/apps/accounts/models/__init__.py diff --git a/services/auth/core/apps/accounts/models/reset_token.py b/auth/core/apps/accounts/models/reset_token.py similarity index 100% rename from services/auth/core/apps/accounts/models/reset_token.py rename to auth/core/apps/accounts/models/reset_token.py diff --git a/services/auth/core/apps/accounts/models/user.py b/auth/core/apps/accounts/models/user.py similarity index 100% rename from services/auth/core/apps/accounts/models/user.py rename to auth/core/apps/accounts/models/user.py diff --git a/services/auth/core/apps/accounts/seeder/__init__.py b/auth/core/apps/accounts/seeder/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/seeder/__init__.py rename to auth/core/apps/accounts/seeder/__init__.py diff --git a/services/auth/core/apps/accounts/seeder/core.py b/auth/core/apps/accounts/seeder/core.py similarity index 100% rename from services/auth/core/apps/accounts/seeder/core.py rename to auth/core/apps/accounts/seeder/core.py diff --git a/services/auth/core/apps/accounts/serializers/__init__.py b/auth/core/apps/accounts/serializers/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/serializers/__init__.py rename to auth/core/apps/accounts/serializers/__init__.py diff --git a/services/auth/core/apps/accounts/serializers/auth.py b/auth/core/apps/accounts/serializers/auth.py similarity index 100% rename from services/auth/core/apps/accounts/serializers/auth.py rename to auth/core/apps/accounts/serializers/auth.py diff --git a/services/auth/core/apps/accounts/serializers/change_password.py b/auth/core/apps/accounts/serializers/change_password.py similarity index 100% rename from services/auth/core/apps/accounts/serializers/change_password.py rename to auth/core/apps/accounts/serializers/change_password.py diff --git a/services/auth/core/apps/accounts/serializers/set_password.py b/auth/core/apps/accounts/serializers/set_password.py similarity index 100% rename from services/auth/core/apps/accounts/serializers/set_password.py rename to auth/core/apps/accounts/serializers/set_password.py diff --git a/services/auth/core/apps/accounts/serializers/user.py b/auth/core/apps/accounts/serializers/user.py similarity index 100% rename from services/auth/core/apps/accounts/serializers/user.py rename to auth/core/apps/accounts/serializers/user.py diff --git a/services/auth/core/apps/accounts/signals/__init__.py b/auth/core/apps/accounts/signals/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/signals/__init__.py rename to auth/core/apps/accounts/signals/__init__.py diff --git a/services/auth/core/apps/accounts/signals/user.py b/auth/core/apps/accounts/signals/user.py similarity index 100% rename from services/auth/core/apps/accounts/signals/user.py rename to auth/core/apps/accounts/signals/user.py diff --git a/services/auth/core/apps/accounts/test/__init__.py b/auth/core/apps/accounts/test/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/test/__init__.py rename to auth/core/apps/accounts/test/__init__.py diff --git a/services/auth/core/apps/accounts/test/test_auth.py b/auth/core/apps/accounts/test/test_auth.py similarity index 100% rename from services/auth/core/apps/accounts/test/test_auth.py rename to auth/core/apps/accounts/test/test_auth.py diff --git a/services/auth/core/apps/accounts/test/test_change_password.py b/auth/core/apps/accounts/test/test_change_password.py similarity index 100% rename from services/auth/core/apps/accounts/test/test_change_password.py rename to auth/core/apps/accounts/test/test_change_password.py diff --git a/services/auth/core/apps/accounts/urls.py b/auth/core/apps/accounts/urls.py similarity index 100% rename from services/auth/core/apps/accounts/urls.py rename to auth/core/apps/accounts/urls.py diff --git a/services/auth/core/apps/accounts/views/__init__.py b/auth/core/apps/accounts/views/__init__.py similarity index 100% rename from services/auth/core/apps/accounts/views/__init__.py rename to auth/core/apps/accounts/views/__init__.py diff --git a/services/auth/core/apps/accounts/views/auth.py b/auth/core/apps/accounts/views/auth.py similarity index 100% rename from services/auth/core/apps/accounts/views/auth.py rename to auth/core/apps/accounts/views/auth.py diff --git a/services/auth/core/apps/logs/.gitignore b/auth/core/apps/logs/.gitignore similarity index 100% rename from services/auth/core/apps/logs/.gitignore rename to auth/core/apps/logs/.gitignore diff --git a/services/auth/core/services/__init__.py b/auth/core/services/__init__.py similarity index 100% rename from services/auth/core/services/__init__.py rename to auth/core/services/__init__.py diff --git a/services/auth/core/services/otp.py b/auth/core/services/otp.py similarity index 100% rename from services/auth/core/services/otp.py rename to auth/core/services/otp.py diff --git a/services/auth/core/services/sms.py b/auth/core/services/sms.py similarity index 100% rename from services/auth/core/services/sms.py rename to auth/core/services/sms.py diff --git a/services/auth/core/services/user.py b/auth/core/services/user.py similarity index 100% rename from services/auth/core/services/user.py rename to auth/core/services/user.py diff --git a/services/auth/core/utils/__init__.py b/auth/core/utils/__init__.py similarity index 100% rename from services/auth/core/utils/__init__.py rename to auth/core/utils/__init__.py diff --git a/services/auth/core/utils/cache.py b/auth/core/utils/cache.py similarity index 100% rename from services/auth/core/utils/cache.py rename to auth/core/utils/cache.py diff --git a/services/auth/core/utils/console.py b/auth/core/utils/console.py similarity index 100% rename from services/auth/core/utils/console.py rename to auth/core/utils/console.py diff --git a/services/auth/core/utils/core.py b/auth/core/utils/core.py similarity index 100% rename from services/auth/core/utils/core.py rename to auth/core/utils/core.py diff --git a/services/auth/core/utils/storage.py b/auth/core/utils/storage.py similarity index 100% rename from services/auth/core/utils/storage.py rename to auth/core/utils/storage.py diff --git a/services/auth/docker-compose.yml b/auth/docker-compose.yml similarity index 100% rename from services/auth/docker-compose.yml rename to auth/docker-compose.yml diff --git a/services/auth/docker/Dockerfile.nginx b/auth/docker/Dockerfile.nginx similarity index 100% rename from services/auth/docker/Dockerfile.nginx rename to auth/docker/Dockerfile.nginx diff --git a/services/auth/docker/Dockerfile.web b/auth/docker/Dockerfile.web similarity index 100% rename from services/auth/docker/Dockerfile.web rename to auth/docker/Dockerfile.web diff --git a/services/auth/jst.json b/auth/jst.json similarity index 100% rename from services/auth/jst.json rename to auth/jst.json diff --git a/services/auth/manage.py b/auth/manage.py similarity index 100% rename from services/auth/manage.py rename to auth/manage.py diff --git a/services/auth/pyproject.toml b/auth/pyproject.toml similarity index 100% rename from services/auth/pyproject.toml rename to auth/pyproject.toml diff --git a/services/auth/requirements.txt b/auth/requirements.txt similarity index 100% rename from services/auth/requirements.txt rename to auth/requirements.txt diff --git a/services/auth/resources/.gitignore b/auth/resources/.gitignore similarity index 100% rename from services/auth/resources/.gitignore rename to auth/resources/.gitignore diff --git a/services/auth/resources/layout/.flake8 b/auth/resources/layout/.flake8 similarity index 100% rename from services/auth/resources/layout/.flake8 rename to auth/resources/layout/.flake8 diff --git a/services/auth/resources/layout/Dockerfile.alpine b/auth/resources/layout/Dockerfile.alpine similarity index 100% rename from services/auth/resources/layout/Dockerfile.alpine rename to auth/resources/layout/Dockerfile.alpine diff --git a/services/auth/resources/layout/Dockerfile.nginx b/auth/resources/layout/Dockerfile.nginx similarity index 100% rename from services/auth/resources/layout/Dockerfile.nginx rename to auth/resources/layout/Dockerfile.nginx diff --git a/services/auth/resources/layout/mypy.ini b/auth/resources/layout/mypy.ini similarity index 100% rename from services/auth/resources/layout/mypy.ini rename to auth/resources/layout/mypy.ini diff --git a/services/auth/resources/layout/nginx.conf b/auth/resources/layout/nginx.conf similarity index 100% rename from services/auth/resources/layout/nginx.conf rename to auth/resources/layout/nginx.conf diff --git a/services/auth/resources/locale/.gitkeep b/auth/resources/locale/.gitkeep similarity index 100% rename from services/auth/resources/locale/.gitkeep rename to auth/resources/locale/.gitkeep diff --git a/services/auth/resources/locale/en/LC_MESSAGES/django.po b/auth/resources/locale/en/LC_MESSAGES/django.po similarity index 100% rename from services/auth/resources/locale/en/LC_MESSAGES/django.po rename to auth/resources/locale/en/LC_MESSAGES/django.po diff --git a/services/auth/resources/locale/ru/LC_MESSAGES/django.po b/auth/resources/locale/ru/LC_MESSAGES/django.po similarity index 100% rename from services/auth/resources/locale/ru/LC_MESSAGES/django.po rename to auth/resources/locale/ru/LC_MESSAGES/django.po diff --git a/services/auth/resources/locale/uz/LC_MESSAGES/django.po b/auth/resources/locale/uz/LC_MESSAGES/django.po similarity index 100% rename from services/auth/resources/locale/uz/LC_MESSAGES/django.po rename to auth/resources/locale/uz/LC_MESSAGES/django.po diff --git a/services/auth/resources/logs/.gitignore b/auth/resources/logs/.gitignore similarity index 100% rename from services/auth/resources/logs/.gitignore rename to auth/resources/logs/.gitignore diff --git a/services/auth/resources/media/.gitignore b/auth/resources/media/.gitignore similarity index 100% rename from services/auth/resources/media/.gitignore rename to auth/resources/media/.gitignore diff --git a/services/auth/resources/scripts/backup.sh b/auth/resources/scripts/backup.sh similarity index 100% rename from services/auth/resources/scripts/backup.sh rename to auth/resources/scripts/backup.sh diff --git a/services/auth/resources/scripts/entrypoint-server.sh b/auth/resources/scripts/entrypoint-server.sh similarity index 100% rename from services/auth/resources/scripts/entrypoint-server.sh rename to auth/resources/scripts/entrypoint-server.sh diff --git a/services/auth/resources/scripts/entrypoint.sh b/auth/resources/scripts/entrypoint.sh similarity index 100% rename from services/auth/resources/scripts/entrypoint.sh rename to auth/resources/scripts/entrypoint.sh diff --git a/services/auth/resources/static/css/app.css b/auth/resources/static/css/app.css similarity index 100% rename from services/auth/resources/static/css/app.css rename to auth/resources/static/css/app.css diff --git a/services/auth/resources/static/css/error.css b/auth/resources/static/css/error.css similarity index 100% rename from services/auth/resources/static/css/error.css rename to auth/resources/static/css/error.css diff --git a/services/auth/resources/static/css/input.css b/auth/resources/static/css/input.css similarity index 100% rename from services/auth/resources/static/css/input.css rename to auth/resources/static/css/input.css diff --git a/services/auth/resources/static/css/jazzmin.css b/auth/resources/static/css/jazzmin.css similarity index 100% rename from services/auth/resources/static/css/jazzmin.css rename to auth/resources/static/css/jazzmin.css diff --git a/services/auth/resources/static/css/output.css b/auth/resources/static/css/output.css similarity index 100% rename from services/auth/resources/static/css/output.css rename to auth/resources/static/css/output.css diff --git a/services/auth/resources/static/images/logo.png b/auth/resources/static/images/logo.png similarity index 100% rename from services/auth/resources/static/images/logo.png rename to auth/resources/static/images/logo.png diff --git a/services/auth/resources/static/js/alpine.js b/auth/resources/static/js/alpine.js similarity index 100% rename from services/auth/resources/static/js/alpine.js rename to auth/resources/static/js/alpine.js diff --git a/services/auth/resources/static/js/app.js b/auth/resources/static/js/app.js similarity index 100% rename from services/auth/resources/static/js/app.js rename to auth/resources/static/js/app.js diff --git a/services/auth/resources/static/js/counter.js b/auth/resources/static/js/counter.js similarity index 100% rename from services/auth/resources/static/js/counter.js rename to auth/resources/static/js/counter.js diff --git a/services/auth/resources/static/js/customer.js b/auth/resources/static/js/customer.js similarity index 100% rename from services/auth/resources/static/js/customer.js rename to auth/resources/static/js/customer.js diff --git a/services/auth/resources/static/js/vite-refresh.js b/auth/resources/static/js/vite-refresh.js similarity index 100% rename from services/auth/resources/static/js/vite-refresh.js rename to auth/resources/static/js/vite-refresh.js diff --git a/services/auth/resources/static/vite/assets/appCss-w40geAFS.js b/auth/resources/static/vite/assets/appCss-w40geAFS.js similarity index 100% rename from services/auth/resources/static/vite/assets/appCss-w40geAFS.js rename to auth/resources/static/vite/assets/appCss-w40geAFS.js diff --git a/services/auth/resources/static/vite/assets/appJs-YH6iAcjX.js b/auth/resources/static/vite/assets/appJs-YH6iAcjX.js similarity index 100% rename from services/auth/resources/static/vite/assets/appJs-YH6iAcjX.js rename to auth/resources/static/vite/assets/appJs-YH6iAcjX.js diff --git a/services/auth/resources/static/vite/assets/outCss-r8J2MRAR.css b/auth/resources/static/vite/assets/outCss-r8J2MRAR.css similarity index 100% rename from services/auth/resources/static/vite/assets/outCss-r8J2MRAR.css rename to auth/resources/static/vite/assets/outCss-r8J2MRAR.css diff --git a/services/auth/resources/static/vite/manifest.json b/auth/resources/static/vite/manifest.json similarity index 100% rename from services/auth/resources/static/vite/manifest.json rename to auth/resources/static/vite/manifest.json diff --git a/services/auth/resources/templates/400.html b/auth/resources/templates/400.html similarity index 100% rename from services/auth/resources/templates/400.html rename to auth/resources/templates/400.html diff --git a/services/auth/resources/templates/401.html b/auth/resources/templates/401.html similarity index 100% rename from services/auth/resources/templates/401.html rename to auth/resources/templates/401.html diff --git a/services/auth/resources/templates/403.html b/auth/resources/templates/403.html similarity index 100% rename from services/auth/resources/templates/403.html rename to auth/resources/templates/403.html diff --git a/services/auth/resources/templates/404.html b/auth/resources/templates/404.html similarity index 100% rename from services/auth/resources/templates/404.html rename to auth/resources/templates/404.html diff --git a/services/auth/resources/templates/405.html b/auth/resources/templates/405.html similarity index 100% rename from services/auth/resources/templates/405.html rename to auth/resources/templates/405.html diff --git a/services/auth/resources/templates/408.html b/auth/resources/templates/408.html similarity index 100% rename from services/auth/resources/templates/408.html rename to auth/resources/templates/408.html diff --git a/services/auth/resources/templates/500.html b/auth/resources/templates/500.html similarity index 100% rename from services/auth/resources/templates/500.html rename to auth/resources/templates/500.html diff --git a/services/auth/resources/templates/502.html b/auth/resources/templates/502.html similarity index 100% rename from services/auth/resources/templates/502.html rename to auth/resources/templates/502.html diff --git a/services/auth/resources/templates/503.html b/auth/resources/templates/503.html similarity index 100% rename from services/auth/resources/templates/503.html rename to auth/resources/templates/503.html diff --git a/services/auth/resources/templates/504.html b/auth/resources/templates/504.html similarity index 100% rename from services/auth/resources/templates/504.html rename to auth/resources/templates/504.html diff --git a/services/auth/resources/templates/admin/index.html b/auth/resources/templates/admin/index.html similarity index 100% rename from services/auth/resources/templates/admin/index.html rename to auth/resources/templates/admin/index.html diff --git a/services/auth/resources/templates/registration/login.html b/auth/resources/templates/registration/login.html similarity index 100% rename from services/auth/resources/templates/registration/login.html rename to auth/resources/templates/registration/login.html diff --git a/services/auth/resources/templates/user/home.html b/auth/resources/templates/user/home.html similarity index 100% rename from services/auth/resources/templates/user/home.html rename to auth/resources/templates/user/home.html diff --git a/docker-compose.yml b/docker-compose.yml index 4c072e5..a771789 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -32,10 +32,10 @@ services: networks: - lamenu volumes: - - ./services/auth/resources/layout/nginx.conf:/etc/nginx/nginx.conf - - ./services/auth/resources/:/usr/share/nginx/html/resources/ + - ./auth/resources/layout/nginx.conf:/etc/nginx/nginx.conf + - ./auth/resources/:/usr/share/nginx/html/resources/ build: - context: ./services/auth + context: ./auth dockerfile: ./docker/Dockerfile.nginx depends_on: - auth @@ -45,7 +45,7 @@ services: networks: - lamenu build: - context: ./services/auth + context: ./auth dockerfile: ./docker/Dockerfile.web restart: always command: ${AUTH_COMMAND:-sh ./resources/scripts/entrypoint.sh} @@ -53,7 +53,7 @@ services: - PYTHONPYCACHEPREFIX=/var/cache/pycache - JWT_KEY=${JWT_KEY} volumes: - - ./services/auth:/code + - ./auth:/code - pycache:/var/cache/pycache depends_on: - auth-db @@ -78,13 +78,13 @@ services: networks: - lamenu build: - context: ./services/payment + context: ./payment dockerfile: ./Dockerfile restart: always environment: - JWT_KEY=${JWT_KEY} volumes: - - ./services/payment:/code + - ./payment:/code - pycache:/var/cache/pycache profiles: - payment diff --git a/services/payment/Dockerfile b/payment/Dockerfile similarity index 100% rename from services/payment/Dockerfile rename to payment/Dockerfile