database and services updated and tested

This commit is contained in:
2025-01-08 21:35:11 +03:00
parent 364a4df4b1
commit 08896e4c61
132 changed files with 13302 additions and 95 deletions

View File

@@ -5,20 +5,21 @@ ENV PYTHONUNBUFFERED 1
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
COPY ../service_app/requirements.txt .
COPY ApiServices/EventService/pyproject.toml .
RUN uv venv
RUN uv pip install -r requirements.txt
RUN uv pip install -r pyproject.toml
COPY ../service_app ./service_app
COPY ApiServices/EventService ./service_app
COPY ApiServices/api_handlers ./service_app/api_handlers
COPY ../databases ./service_app/databases
COPY ../api_services ./service_app/api_services
COPY ../api_objects ./service_app/api_objects
COPY ../api_configs ./service_app/api_configs
COPY ../api_events ./service_app/api_events
COPY ../api_library ./service_app/api_library
COPY ../api_validations ./service_app/api_validations
COPY databases ./service_app/databases
COPY api_services ./service_app/api_services
COPY api_objects ./service_app/api_objects
COPY api_configs ./service_app/api_configs
COPY api_events ./service_app/api_events
COPY api_library ./service_app/api_library
COPY api_validations ./service_app/api_validations
WORKDIR /service_app

View File

@@ -0,0 +1 @@
__all__ = []