Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump eslint from 7.32.0 to 8.0.0 in /frontend #564

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
version: 2
updates:

# Docker
- package-ecosystem: docker
directory: "/"
target-branch: "development"
schedule:
interval: weekly
day: saturday
Expand All @@ -11,8 +14,11 @@ updates:
versions:
- ">= 15.pre.alpine.a, < 16"
rebase-strategy: disabled

# Javascript
- package-ecosystem: npm
directory: "/frontend"
target-branch: "development"
schedule:
interval: weekly
day: saturday
Expand All @@ -25,8 +31,11 @@ updates:
versions:
- "> 4.14.1"
rebase-strategy: disabled

# Python
- package-ecosystem: pip
directory: "/backend"
target-branch: "development"
schedule:
interval: weekly
day: saturday
Expand All @@ -36,3 +45,12 @@ updates:
versions:
- ">= 3.2.a, < 3.3"
rebase-strategy: disabled

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "development"
schedule:
interval: weekly
day: saturday
time: "04:00"
16 changes: 3 additions & 13 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,7 @@ version: '3.8'
services:
web:
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
args:
- API_URL=https://felkeres.bsstudio.hu/api/v1/
- AUTHSCH_CLIENT_ID=60451969490994503646
- FACEBOOK_CLIENT_ID=817759665400170
- GOOGLE_CLIENT_ID=593937386712-8pu2vh1ukq17oidh9f4snkjf9oa88tvb.apps.googleusercontent.com
- RECAPTCHA_SITE_KEY=6LfoyF4aAAAAAN1m2mr_A7inOhPD428_y8pYKKr7
- SENTRY_URL=https://5d84e5aa35114e5bbe49ca9b8a013440@o354977.ingest.sentry.io/5989036
image: bss-request-manager
image: ghcr.io/koliver94/bss-request-manager:master
command: gunicorn --bind=0.0.0.0:8000 --workers=5 --threads=2 core.wsgi
volumes:
- credentials:/app/backend/credentials
Expand All @@ -30,7 +20,7 @@ services:

celery-worker:
restart: unless-stopped
image: bss-request-manager
image: ghcr.io/koliver94/bss-request-manager:master
command: celery -A core worker
env_file:
- ./backend/.env
Expand All @@ -49,7 +39,7 @@ services:

celery-beat:
restart: unless-stopped
image: bss-request-manager
image: ghcr.io/koliver94/bss-request-manager:master
command: celery -A core beat
env_file:
- ./backend/.env
Expand Down