Initial commit

This commit is contained in:
wangxuming
2026-07-12 15:53:24 +08:00
commit 68d61700d5
252 changed files with 23291 additions and 0 deletions

16
scripts/seed.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT_DIR/server"
if [[ -f .env ]]; then
set -a
source .env
set +a
fi
: "${ADMIN_PASSWORD:=ChangeMe123!}"
export ADMIN_PASSWORD
exec go run ./cmd/seed