From 4b158261db4020c0e2306c4716a995f835fa674e Mon Sep 17 00:00:00 2001 From: dm1sh Date: Tue, 16 May 2023 23:21:14 +0300 Subject: [PATCH] Renamed backend folder --- Dockerfile | 6 +++--- README.md | 2 +- {app => back}/__init__.py | 0 {app => back}/main.py | 0 {app => back}/utils.py | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename {app => back}/__init__.py (100%) rename {app => back}/main.py (100%) rename {app => back}/utils.py (100%) diff --git a/Dockerfile b/Dockerfile index 084567a..7cbd86e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,9 @@ COPY front . RUN npm run build FROM python:3-slim -WORKDIR /app +WORKDIR /srv COPY requirements.txt . RUN pip install --no-cache-dir --upgrade -r requirements.txt -COPY ./app ./app +COPY ./back ./back COPY --from=builder /src/dist ./front/dist -CMD uvicorn app.main:app --host 0.0.0.0 --port 80 +CMD uvicorn back.main:app --host 0.0.0.0 --port 80 diff --git a/README.md b/README.md index f862287..174d80c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Backend: ```sh pip install -r requirements.txt -uvicorn app.main:app --reload +uvicorn back.main:app --reload ``` ## Deploy instructions diff --git a/app/__init__.py b/back/__init__.py similarity index 100% rename from app/__init__.py rename to back/__init__.py diff --git a/app/main.py b/back/main.py similarity index 100% rename from app/main.py rename to back/main.py diff --git a/app/utils.py b/back/utils.py similarity index 100% rename from app/utils.py rename to back/utils.py