mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 05:02:57 +00:00
refactor: 统一详情接口权限标识从query改为detail feat(tenant): 为租户模型添加domain字段支持 fix(cron): 移除定时任务触发参数只读限制 perf(menu): 优化菜单权限标识注释说明 refactor(model): 为多个模型添加租户关联支持 style(main): 调整CSS导入顺序和格式 chore(package): 替换前端流程图库为@vue-flow系列 fix(token): 修正令牌详情接口权限标识 docs(sql): 更新菜单权限标识注释为query格式
22 lines
396 B
Bash
22 lines
396 B
Bash
# 环境
|
|
VITE_APP_ENV=development
|
|
|
|
# 项目名称
|
|
VITE_APP_TITLE=fastapiadmin
|
|
|
|
# 网络请求公用地址
|
|
# VITE_API_BASE_URL=http://127.0.0.1:8001
|
|
VITE_API_BASE_URL=https://service.fastapiadmin.com
|
|
|
|
# 代理前缀
|
|
VITE_APP_BASE_API=/api/v1
|
|
|
|
# 应用端口
|
|
VITE_APP_PORT=5180
|
|
|
|
# 超时时间
|
|
VITE_TIMEOUT=10000
|
|
|
|
# WebSocket 端点(不配置则关闭)
|
|
VITE_APP_WS_ENDPOINT=ws://127.0.0.1:8001
|