changed project structure and splited models and routes files

This commit is contained in:
2025-06-15 15:11:07 +03:00
parent 923820687b
commit 51a6ba75c0
20 changed files with 656 additions and 3 deletions

View File

@@ -5,8 +5,8 @@ WORKDIR /code
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY alembic.ini ./
COPY ./app /code/app
COPY ./src/alembic.ini ./
COPY ./src/app /code/app
COPY ./tests /code/tests
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]