diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml index a357b5a..9eba4fe 100644 --- a/.github/workflows/add_to_project.yml +++ b/.github/workflows/add_to_project.yml @@ -13,9 +13,9 @@ jobs: uses: actions/github-script@v6 with: script: | - const projectName = "Software"; - const columnName = "Backlog"; - + const projectName = "Software"; + const columnName = "Backlog"; + // Fetch the repository projects const projects = await github.rest.projects.listForRepo({ owner: context.repo.owner, diff --git a/compose/local/docs/Dockerfile b/compose/local/docs/Dockerfile index 49e25cb..c8bd0eb 100644 --- a/compose/local/docs/Dockerfile +++ b/compose/local/docs/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ && rm -rf /var/lib/apt/lists/* # Requirements are installed here to ensure they will be cached. -COPY ./requirements /requirements +COPY ./backend/requirements /requirements # create python dependency wheels RUN pip wheel --no-cache-dir --wheel-dir /usr/src/app/wheels \ diff --git a/docker-compose.production.yml b/docker-compose.production.yml index 8c3189c..ddcafd1 100644 --- a/docker-compose.production.yml +++ b/docker-compose.production.yml @@ -3,9 +3,9 @@ volumes: production_postgres_data_backups: {} production_traefik: {} production_django_media: {} - + production_redis_data: {} - + services: @@ -52,10 +52,10 @@ services: redis: image: docker.io/redis:6 - + volumes: - production_redis_data:/data - + celeryworker: <<: *django