diff --git a/backend/requirements.txt b/backend/requirements.txt index f31cecc..2c640fa 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,5 +1,4 @@ requests == 2.31.0 fastAPI == 0.110.1 uvicorn[standard] -pre-commit python-multipart diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml new file mode 100644 index 0000000..7ef4ed4 --- /dev/null +++ b/docker-compose.dev.yml @@ -0,0 +1,54 @@ +services: + frontend: + container_name: "AniX-frontend" + build: + context: ./frontend + dockerfile: ../docker/frontend.dev.Dockerfile + labels: + - "traefik.enable=true" + - "traefik.http.routers.anix-frontend.rule=Host(`127.0.0.1`)" + - "traefik.http.routers.anix-frontend.entrypoints=web" + expose: + - 3000 + develop: + watch: + - action: sync + path: ./frontend + target: /app + ignore: + - node_modules/ + - .next/ + - action: rebuild + path: ./frontend/package.json + backend: + container_name: "AniX-backend" + build: + context: ./backend + dockerfile: ../docker/backend.dev.Dockerfile + labels: + - "traefik.enable=true" + - "traefik.http.routers.anix-backend.rule=Host(`127.0.0.1`) && PathPrefix(`/api`)" + - "traefik.http.routers.anix-backend.entrypoints=web" + expose: + - 8000 + develop: + watch: + - action: sync + path: ./backend + target: /app + - action: rebuild + path: ./backend/requirements.txt + traefik: + image: "traefik:v3.0" + container_name: "AniX-traefik" + command: + #- "--log.level=DEBUG" + - "--api.dashboard=false" + - "--api.insecure=false" + - "--providers.docker=true" + - "--providers.docker.exposedbydefault=false" + - "--entryPoints.web.address=:80" + ports: + - "80:80" + volumes: + - "/var/run/docker.sock:/var/run/docker.sock:ro" diff --git a/docker/backend.dev.Dockerfile b/docker/backend.dev.Dockerfile new file mode 100644 index 0000000..732af42 --- /dev/null +++ b/docker/backend.dev.Dockerfile @@ -0,0 +1,18 @@ +# The first instruction is what image we want to base our container on +# We Use an official Python runtime as a parent image +FROM python:3.9 + +# The enviroment variable ensures that the python output is set straight +# to the terminal with out buffering it first +ENV PYTHONUNBUFFERED 1 + +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . . + +# Install any needed packages specified in requirements.txt +RUN pip install -r requirements.txt + +CMD ["uvicorn", "main:app", "--reload", "--host", "0.0.0.0"] diff --git a/docker/frontend.dev.Dockerfile b/docker/frontend.dev.Dockerfile new file mode 100644 index 0000000..3ed60bc --- /dev/null +++ b/docker/frontend.dev.Dockerfile @@ -0,0 +1,12 @@ +FROM node:21-alpine + +WORKDIR /app + +ADD package.json . + +RUN npm update -g npm --loglevel verbose +COPY . . +RUN npm install --loglevel verbose +# RUN npm ci --no-audit --maxsockets 1 + +CMD ["npm", "run", "dev"] diff --git a/frontend/package.json b/frontend/package.json index 03f8643..dd589f4 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -16,11 +16,11 @@ "material-dynamic-colors": "^1.1.0", "react": "^18", "react-dom": "^18", + "next": "^14.2.2", "zustand": "^4.5.2" }, "devDependencies": { "eslint-config-next": "14.2.2", - "next": "^14.2.2", "postcss": "^8" } }