This commit is contained in:
eric
2026-05-16 19:24:30 -05:00
parent 19beec12a5
commit 75a0ca4e31
260 changed files with 51345 additions and 1 deletions

17
d2ypp2/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "douyinyoutube",
"private": true,
"description": "直播推流控制台:一键开发/构建脚本入口(核心逻辑见 scripts/launch.py",
"scripts": {
"dev": "concurrently -k -n api,console -c cyan,magenta \"npm run dev:api\" \"npm run dev:console\"",
"dev:api": "python -m uvicorn web:app --host 0.0.0.0 --port 8001 --reload",
"dev:console": "npm run dev --prefix web-console",
"build": "npm run build --prefix web-console",
"start": "python scripts/launch.py",
"start:api": "python scripts/launch.py --api-only",
"preview": "python scripts/launch.py --skip-build"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}