AI Implementation feature(899): Data and run (#39)

This commit was merged in pull request #39.
This commit is contained in:
2026-07-22 19:56:33 +00:00
parent 113dd47371
commit 1a40e5708a
23 changed files with 305 additions and 53 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
echo "[setup] Ensuring /data/hipctf exists..."
mkdir -p /data/hipctf/uploads
echo "[setup] Ensuring ./data/uploads exists..."
mkdir -p ./data/uploads
echo "[setup] Installing root dependencies..."
npm ci --no-audit --no-fund || npm install --no-audit --no-fund
@@ -16,4 +16,4 @@ npm --workspace frontend run build
echo "[setup] Building NestJS backend..."
npm --workspace backend run build
echo "[setup] Done. Start with: npm start"
echo "[setup] Done. Start with: npm start (dev mode: npm run dev)"