feat: 完善视频任务与 KOC 资源库

This commit is contained in:
巫凤萍
2026-08-15 03:53:09 +08:00
parent ad3dbdcc86
commit f37d05dd88
66 changed files with 6633 additions and 558 deletions

7
scripts/setup.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
set -eu
APP_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
cd "$APP_DIR"
npm ci
npm run build

8
scripts/start.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -eu
APP_DIR=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
cd "$APP_DIR"
export HOSTNAME=0.0.0.0
export PORT="${PORT:-9000}"
exec node .next/standalone/server.js