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

update dependencies #296

Merged
merged 24 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
bd22362
Bump @eslint/js from 9.20.0 to 9.21.0 in /liveticker
dependabot[bot] Feb 24, 2025
118e1a4
Bump @reduxjs/toolkit from 2.5.1 to 2.6.0 in /liveticker
dependabot[bot] Feb 24, 2025
d07eef9
Bump prettier from 3.5.1 to 3.5.2 in /liveticker
dependabot[bot] Feb 24, 2025
a290014
Bump eslint from 9.20.1 to 9.21.0 in /passcheck
dependabot[bot] Feb 24, 2025
1674e54
Bump prettier from 3.5.1 to 3.5.2 in /scorecard
dependabot[bot] Feb 24, 2025
bad9d48
Bump @reduxjs/toolkit from 2.5.1 to 2.6.0 in /scorecard
dependabot[bot] Feb 24, 2025
de60d3f
Bump @eslint/js from 9.20.0 to 9.21.0 in /scorecard
dependabot[bot] Feb 24, 2025
ec2d013
just a test
dachrisch Feb 25, 2025
60ebce7
Update container names to use ${SERVICE_NAME} variable
dachrisch Feb 27, 2025
b8b96ac
Add restart policy to web and db services
dachrisch Feb 27, 2025
c4799b7
Merge pull request #119 from dachrisch/dependabot/npm_and_yarn/scorec…
dachrisch Feb 27, 2025
c39f970
Merge pull request #118 from dachrisch/dependabot/npm_and_yarn/scorec…
dachrisch Feb 27, 2025
01811be
Merge pull request #116 from dachrisch/dependabot/npm_and_yarn/scorec…
dachrisch Feb 27, 2025
16de300
Merge pull request #114 from dachrisch/dependabot/npm_and_yarn/passch…
dachrisch Feb 27, 2025
734203a
Merge pull request #110 from dachrisch/dependabot/npm_and_yarn/liveti…
dachrisch Feb 27, 2025
879f90d
Merge pull request #111 from dachrisch/dependabot/npm_and_yarn/liveti…
dachrisch Feb 27, 2025
ce262ed
Merge pull request #113 from dachrisch/dependabot/npm_and_yarn/liveti…
dachrisch Feb 27, 2025
a560fcf
Bump globals from 15.15.0 to 16.0.0 in /liveticker
dependabot[bot] Feb 27, 2025
ea21779
Merge pull request #112 from dachrisch/dependabot/npm_and_yarn/liveti…
dachrisch Feb 27, 2025
e3c9916
Bump globals from 15.15.0 to 16.0.0 in /scorecard
dependabot[bot] Feb 27, 2025
29d758b
Merge pull request #117 from dachrisch/dependabot/npm_and_yarn/scorec…
dachrisch Feb 27, 2025
70b6337
Merge branch 'chris0chris:master' into deploy
dachrisch Feb 27, 2025
b0aa631
Add traefik label for service name in docker-compose file
dachrisch Feb 27, 2025
7eccc1c
Merge branch 'deploy' of github.com:dachrisch/league-manager into deploy
dachrisch Feb 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docker-compose.yaml → deployed/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
services:
www:
image: leaguesphere/frontend:latest
container_name: ${COMPOSE_PROJECT_NAME}.www
container_name: ${SERVICE_NAME}.www
labels:
- traefik.http.services.${SERVICE_NAME}.name=${SERVICE_NAME}
# redirect service
# https://jensknipper.de/blog/traefik-http-to-https-redirect/
- traefik.http.routers.${SERVICE_NAME}-http.entrypoints=web
Expand Down Expand Up @@ -37,7 +38,7 @@ services:

app:
image: leaguesphere/backend:latest
container_name: ${COMPOSE_PROJECT_NAME}.app
container_name: ${SERVICE_NAME}.app
command: gunicorn -b 0.0.0.0:8000 league_manager.wsgi
labels:
# portainer team
Expand All @@ -54,11 +55,11 @@ services:
condition: service_healthy
healthcheck:
test: curl -A healthcheck -I --fail http://localhost:8000 || exit 1
restart: unless-stopped

db:
restart: unless-stopped
image: mariadb:lts
container_name: ${COMPOSE_PROJECT_NAME}.db
container_name: ${SERVICE_NAME}.db
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --default-storage-engine=InnoDB
labels:
# portainer team
Expand All @@ -73,6 +74,7 @@ services:
healthcheck:
test: healthcheck.sh --connect --innodb_initialized
start_period: 5s
restart: unless-stopped

volumes:
static:
Expand Down
42 changes: 26 additions & 16 deletions liveticker/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions liveticker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "__tests__"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.1",
"@reduxjs/toolkit": "^2.6.0",
"axios": "^1.7.9",
"prop-types": "^15.8.1",
"react": "^19.0.0",
Expand All @@ -31,7 +31,7 @@
"@babel/plugin-transform-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@eslint/js": "^9.20.0",
"@eslint/js": "^9.21.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
Expand All @@ -40,11 +40,11 @@
"eslint-config-prettier": "^10.0.1",
"eslint-formatter-junit": "^8.40.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.15.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "3.5.1",
"prettier": "3.5.2",
"redux-mock-store": "^1.5.5",
"regenerator-runtime": "^0.14.1",
"webpack": "^5.98.0",
Expand Down
102 changes: 56 additions & 46 deletions passcheck/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading