Gacha pool overhaul and DB backup wizard
Build and Push Docker images to Docker Hub / build-and-push (push) Has been cancelled

This commit is contained in:
Ilya Groshev
2026-05-12 20:47:24 +03:00
parent cc9dc4f1c5
commit 23f0d26fcd
10 changed files with 480 additions and 123 deletions
+4 -1
View File
@@ -51,6 +51,9 @@ dev:
migrate:
$(GOOSE) -dir migrations -allow-missing sqlite3 db/game.db up
restore:
go run ./cmd/wizard-restore
import:
ifndef SNAPSHOT
$(error SNAPSHOT is required, e.g. make import SNAPSHOT=snapshots/scene_1.json UUID=...)
@@ -60,4 +63,4 @@ ifndef UUID
endif
go run ./cmd/import-snapshot --snapshot $(SNAPSHOT) --uuid $(UUID)
.PHONY: proto build build-cdn build-auth build-import build-claim-account build-register-account build-dev build-all clean dev migrate import
.PHONY: proto build build-cdn build-auth build-import build-claim-account build-register-account build-dev build-all clean dev migrate restore import