final adjustments
Some checks failed
ci / build (push) Failing after 46s

This commit is contained in:
miwr 2025-04-22 13:27:54 +02:00
parent b0fe153251
commit 94ce399c08
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ TAG=$(date +'%H%M')
docker build --platform linux/arm64 -t michals-silly-game-frontend-${TAG} .
docker tag michals-silly-game-frontend forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/michals-silly-game-frontend:${TAG}
docker tag michals-silly-game-frontend-${TAG} forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/devfw-cicd/michals-silly-game-frontend:${TAG}
docker login https://forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/

View file

@ -11,6 +11,6 @@ export class JumpService {
registerJump() {
console.log("api: " + this.apiUrl)
return this.http.get<{ totalJumps: number }>(this.apiUrl, {});
return this.http.get<{ totalJumps: number }>(this.apiUrl+"game/jump", {});
}
}

View file

@ -1,5 +1,5 @@
export const environment = {
production: true,
apiBaseUrl: "https://factory.c-one-infra.de/silly-game-api/game/jump"
apiBaseUrl: "https://factory.c-one-infra.de/silly-game-api/"
// apiBaseUrl: "http://${window.location.origin}/silly-game-api/game/jump"
};