This commit is contained in:
2026-07-18 20:54:48 +08:00
parent 452be6c0a5
commit ca957385f2
9 changed files with 115 additions and 18 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# CertCenter 启动脚本
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
# 激活虚拟环境
if [ -f ".venv/bin/activate" ]; then
source .venv/bin/activate
fi
exec python -m backend.main