diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index e364045..0f463a9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -27,7 +27,7 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + if [ -f ./api/requirements.txt ]; then pip install -r ./api/requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names diff --git a/docker-compose.yml b/docker-compose.yml index 86297c7..35d4435 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,6 +12,14 @@ services: volumes: - postgres-data:/var/lib/postgresql/data + grafana: + image: grafana/grafana:latest + ports: + - "3000:3000" + volumes: + - grafana-data:/var/lib/grafana + depends_on: + - postgres keydb: image: "eqalpha/keydb:latest" @@ -84,9 +92,8 @@ services: links: - rabbitmq - - volumes: + grafana-data: postgres-data: open-meteo-data: external: true