This commit is contained in:
parent
b0fe153251
commit
94ce399c08
3 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ TAG=$(date +'%H%M')
|
||||||
|
|
||||||
docker build --platform linux/arm64 -t michals-silly-game-frontend-${TAG} .
|
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/
|
docker login https://forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,6 @@ export class JumpService {
|
||||||
|
|
||||||
registerJump() {
|
registerJump() {
|
||||||
console.log("api: " + this.apiUrl)
|
console.log("api: " + this.apiUrl)
|
||||||
return this.http.get<{ totalJumps: number }>(this.apiUrl, {});
|
return this.http.get<{ totalJumps: number }>(this.apiUrl+"game/jump", {});
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
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"
|
// apiBaseUrl: "http://${window.location.origin}/silly-game-api/game/jump"
|
||||||
};
|
};
|
Loading…
Reference in a new issue