Migrate education data to SQLite

This commit is contained in:
Codex
2026-06-24 17:27:50 +08:00
parent da368100db
commit 70a5af3020
13 changed files with 1203 additions and 23 deletions
+7 -1
View File
@@ -4,7 +4,7 @@ APP_DIR := app
APP_MAKE := $(MAKE) -C $(APP_DIR) --no-print-directory
COMPOSE := docker compose -f $(APP_DIR)/docker-compose.yml
.PHONY: check smoke data-hash build up ps health deploy logs install-gitea-backup compose-config
.PHONY: check smoke data-hash migrate-sqlite-dry-run migrate-sqlite build up ps health deploy logs install-gitea-backup compose-config
check:
$(APP_MAKE) check
@@ -15,6 +15,12 @@ smoke:
data-hash:
$(APP_MAKE) data-hash
migrate-sqlite-dry-run:
$(APP_MAKE) migrate-sqlite-dry-run
migrate-sqlite:
$(APP_MAKE) migrate-sqlite
build:
$(APP_MAKE) build