Added further game data; updated setup
This commit is contained in:
parent
3bbada9cc5
commit
a92f1c1ace
5 changed files with 12506 additions and 4529 deletions
|
|
@ -6,7 +6,6 @@ COPY package.json ./
|
|||
|
||||
RUN npm install
|
||||
|
||||
COPY node_modules/ node_modules/
|
||||
COPY src/ src/
|
||||
COPY public/ public/
|
||||
COPY babel.config.js ./
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ services:
|
|||
context: ../
|
||||
dockerfile: docker/Dockerfile
|
||||
ports:
|
||||
- "7000:80"
|
||||
- "8080:80"
|
||||
volumes:
|
||||
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
||||
restart: unless-stopped
|
||||
16961
package-lock.json
generated
16961
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -14,9 +14,9 @@
|
|||
"devDependencies": {
|
||||
"@babel/core": "^7.12.16",
|
||||
"@babel/eslint-parser": "^7.12.16",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"@vue/cli-plugin-babel": "^3.12.1",
|
||||
"@vue/cli-plugin-eslint": "^5.0.8",
|
||||
"@vue/cli-service": "^3.3.1",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-vue": "^8.0.3"
|
||||
},
|
||||
|
|
|
|||
65
src/data.js
65
src/data.js
|
|
@ -105,6 +105,15 @@ export const games = [
|
|||
team1: "TV Düppenweiler",
|
||||
team2: "DJK Saarbrücken-Rastpfuhl",
|
||||
host: 1,
|
||||
results: {
|
||||
sets: {
|
||||
1: [25, 23],
|
||||
2: [23, 25],
|
||||
3: [25, 10],
|
||||
4: [25, 14],
|
||||
},
|
||||
additional_data: [],
|
||||
},
|
||||
},
|
||||
{
|
||||
date: "2024-11-09",
|
||||
|
|
@ -113,6 +122,20 @@ export const games = [
|
|||
team1: "DJK Saarbrücken-Rastpfuhl",
|
||||
team2: "TV Brebach",
|
||||
host: 1,
|
||||
results: {
|
||||
sets: {
|
||||
1: [22, 25],
|
||||
2: [22, 25],
|
||||
3: [16, 25],
|
||||
},
|
||||
additional_data: [
|
||||
{
|
||||
type: "YouTube",
|
||||
title: "Replay",
|
||||
url: "https://youtu.be/7vRUhVHEAcQ",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
date: "2024-11-09",
|
||||
|
|
@ -121,6 +144,20 @@ export const games = [
|
|||
team1: "DJK Saarbrücken-Rastpfuhl",
|
||||
team2: "TV 06 Limbach",
|
||||
host: 1,
|
||||
results: {
|
||||
sets: {
|
||||
1: [20, 25],
|
||||
2: [22, 25],
|
||||
3: [23, 25],
|
||||
},
|
||||
additional_data: [
|
||||
{
|
||||
type: "YouTube",
|
||||
title: "Replay",
|
||||
url: "https://youtu.be/L4yv4clg-XQ",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
date: "2024-11-30",
|
||||
|
|
@ -129,6 +166,20 @@ export const games = [
|
|||
team1: "TV Saarwellingen 2",
|
||||
team2: "DJK Saarbrücken-Rastpfuhl",
|
||||
host: 1,
|
||||
results: {
|
||||
sets: {
|
||||
1: [25, 23],
|
||||
2: [25, 15],
|
||||
3: [25, 12],
|
||||
},
|
||||
additional_data: [
|
||||
{
|
||||
type: "YouTube",
|
||||
title: "Replay",
|
||||
url: "https://youtu.be/1nJ-LJ-uRcI",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
date: "2024-12-14",
|
||||
|
|
@ -137,6 +188,20 @@ export const games = [
|
|||
team1: "TV Wiesbach 2",
|
||||
team2: "DJK Saarbrücken-Rastpfuhl",
|
||||
host: 1,
|
||||
results: {
|
||||
sets: {
|
||||
1: [25, 22],
|
||||
2: [25, 18],
|
||||
3: [25, 21],
|
||||
},
|
||||
additional_data: [
|
||||
{
|
||||
type: "YouTube",
|
||||
title: "Replay",
|
||||
url: "https://www.youtube.com/watch?v=z2Jz95Q8l_w",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
date: "2025-01-11",
|
||||
|
|
|
|||
Loading…
Reference in a new issue