initial commit of functioning opening tracking

This commit is contained in:
Sheldan
2024-01-06 23:29:25 +01:00
parent b72c68dfe5
commit 45e7982330
176 changed files with 37635 additions and 0 deletions

17
docker-compose.yaml Normal file
View File

@@ -0,0 +1,17 @@
version: "3.7"
services:
gw2-tools-backend:
build:
context: gw2-tools-backend/packaging/src/main/docker
image: ${REGISTRY_PREFIX}gw2-tools-backend:${VERSION:-latest}
gw2-tools-frontend:
build:
context: gw2-tools-frontend
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}gw2-tools-frontend:${VERSION:-latest}
database:
build:
context: gw2-tools-backend/database/src/main
dockerfile: docker/Dockerfile
image: ${REGISTRY_PREFIX}gw2-tools-database:${VERSION:-latest}