diff --git a/.github/workflows/backend-tests.yml b/.github/workflows/backend-tests.yml index 1d1d2b8adc3f..776cd00f8b9e 100644 --- a/.github/workflows/backend-tests.yml +++ b/.github/workflows/backend-tests.yml @@ -37,7 +37,7 @@ jobs: # ----- install & configure poetry ----- #---------------------------------------------- - name: Install Poetry - uses: snok/install-poetry@v1.1.1 + uses: snok/install-poetry@v1 with: virtualenvs-create: true virtualenvs-in-project: true @@ -57,7 +57,7 @@ jobs: run: | poetry install poetry add "psycopg2-binary==2.8.6" - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' #---------------------------------------------- # run test suite #---------------------------------------------- diff --git a/docker-compose.yml b/docker-compose.yml index 73f653c196ce..0034a965b9e6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,12 +24,19 @@ services: ports: - 9092:80 environment: - # DB_ENGINE: postgres # Optional: 'sqlite', 'postgres' - # POSTGRES_USER: mealie - # POSTGRES_PASSWORD: mealie - # POSTGRES_SERVER: postgres - # POSTGRES_PORT: 5432 - # POSTGRES_DB: mealie - # WORKERS_PER_CORE: 0.5 + DB_ENGINE: postgres # Optional: 'sqlite', 'postgres' + POSTGRES_USER: mealie + POSTGRES_PASSWORD: mealie + POSTGRES_SERVER: postgres + POSTGRES_PORT: 5432 + POSTGRES_DB: mealie + WORKERS_PER_CORE: 0.5 MAX_WORKERS: 1 WEB_CONCURRENCY: 1 + postgres: + container_name: postgres + image: postgres + restart: always + environment: + POSTGRES_PASSWORD: mealie + POSTGRES_USER: mealie diff --git a/frontend/pages/meal-plan/planner.vue b/frontend/pages/meal-plan/planner.vue index 01c5112cf78d..13d5da9d6d4c 100644 --- a/frontend/pages/meal-plan/planner.vue +++ b/frontend/pages/meal-plan/planner.vue @@ -94,7 +94,7 @@