1
All checks were successful
Deploy API / deploy (push) Successful in 33s

This commit is contained in:
2026-05-25 00:09:44 +08:00
parent 5fe13358c1
commit 69176e986b
5 changed files with 140 additions and 19 deletions

View File

@@ -39,6 +39,10 @@ func main() {
log.Print("RUN_WALLET_AUTH_SCHEMA=false: skipping wallet_auth_* DDL at startup")
}
if err := handlers.EnsureResourceI18nColumns(ctx, pool); err != nil {
log.Fatalf("resources i18n columns: %v", err)
}
if err := os.MkdirAll(cfg.UploadDir, 0o755); err != nil {
log.Fatal(err)
}