完善维护入口并处理课程小结审核

This commit is contained in:
Codex
2026-06-18 03:39:25 +08:00
parent 72184004e3
commit 2c7dfad2b6
3 changed files with 58 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
SHELL := /bin/bash
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
check:
$(APP_MAKE) check
smoke:
$(APP_MAKE) smoke
data-hash:
$(APP_MAKE) data-hash
build:
$(APP_MAKE) build
up:
$(APP_MAKE) up
ps:
$(APP_MAKE) ps
health:
$(APP_MAKE) health
deploy:
$(APP_MAKE) deploy
logs:
$(APP_MAKE) logs
install-gitea-backup:
$(APP_MAKE) install-gitea-backup
compose-config:
$(COMPOSE) config