mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-07 04:52:42 +08:00
### v1.1.0 - #### Added - 新增 AI 笔记风格选择 - 新增 AI 笔记返回格式选择 - 添加 AI 自定义笔记备注 Prompt - 添加任务失败重试 - 添加全局设置页,可在设置页进行模型设置 - #### Optimize - 优化前端样式,优化用户体验 - 增加生成中间产物,可用于失败后加快生成速度 - #### Fix - 修复视频截图视频过早删除错误
29 lines
1005 B
Plaintext
29 lines
1005 B
Plaintext
###
|
||
# @Author: 思诺特 jefferyhcool@gmail.com
|
||
# @Date: 2025-04-14 08:49:59
|
||
# @LastEditors: 思诺特 jefferyhcool@gmail.com
|
||
# @LastEditTime: 2025-04-26 19:56:50
|
||
# @FilePath: \BiliNote\.env.example
|
||
# @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||
###
|
||
# 通用端口配置
|
||
BACKEND_PORT=8001
|
||
FRONTEND_PORT=3015
|
||
BACKEND_HOST=0.0.0.0 # 默认为 0.0.0.0,表示监听所有 IP 地址 不建议动
|
||
|
||
# 前端访问后端用(生产环境建议写公网或宿主机 IP)
|
||
VITE_API_BASE_URL=http://127.0.0.1:8001
|
||
VITE_SCREENSHOT_BASE_URL=http://127.0.0.1:8001/static/screenshots
|
||
|
||
# 生产环境配置
|
||
ENV=production
|
||
STATIC=/static
|
||
OUT_DIR=./static/screenshots
|
||
IMAGE_BASE_URL=/static/screenshots
|
||
DATA_DIR=data
|
||
# FFMPEG 配置
|
||
FFMPEG_BIN_PATH=
|
||
|
||
# transcriber 相关配置
|
||
TRANSCRIBER_TYPE=fast-whisper # fast-whisper/bcut/kuaishou/mlx-whisper(仅Apple平台)
|
||
WHISPER_MODEL_SIZE=base |