Files
Podcast-Generator/web/start.bat
hex2077 47668b8a74 feat: 新增播客详情页及相关功能组件
实现播客详情页功能,包括:
1. 新增 PodcastContent 组件展示播客详情
2. 添加 AudioPlayerControls 和 PodcastTabs 组件
3. 实现分享功能组件 ShareButton
4. 优化音频文件命名规则和缓存机制
5. 完善类型定义和 API 接口
6. 调整 UI 布局和响应式设计
7. 修复积分不足状态码问题
2025-08-18 23:42:36 +08:00

28 lines
507 B
Batchfile
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
echo 正在启动 PodcastHub 播客生成器...
echo.
echo 1. 检查 Node.js 环境...
node --version
if %errorlevel% neq 0 (
echo 错误: 未找到 Node.js请先安装 Node.js
pause
exit /b 1
)
echo.
echo 2. 安装依赖包...
npm install
if %errorlevel% neq 0 (
echo 错误: 依赖安装失败
pause
exit /b 1
)
echo.
echo 3. 启动开发服务器...
echo 应用将在 http://localhost:3001 启动
echo 按 Ctrl+C 停止服务器
echo.
set PORT=3001 && npm run dev