mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-22 05:02:57 +00:00
添加了项目所需的基础配置文件(.editorconfig、.gitignore、环境变量文件等),创建了通用工具函数、类型定义、枚举常量、路由配置、状态管理、国际化、自定义指令与插件等核心模块,新增了多个业务组件、布局组件与页面视图,并添加了大量SVG图标资源。
21 lines
399 B
Bash
21 lines
399 B
Bash
# 环境
|
|
VITE_APP_ENV=development
|
|
|
|
# 项目名称
|
|
VITE_APP_TITLE=fastapiadmin
|
|
|
|
# 网络请求公用地址,根据实际部署情况修改
|
|
VITE_API_BASE_URL=http://127.0.0.1:8001
|
|
|
|
# 代理前缀
|
|
VITE_APP_BASE_API=/api/v1
|
|
|
|
# 应用端口
|
|
VITE_APP_PORT=5180
|
|
|
|
# 超时时间
|
|
VITE_TIMEOUT=10000
|
|
|
|
# WebSocket 端点(不配置则关闭),ai对话需要配置
|
|
VITE_APP_WS_ENDPOINT=ws://127.0.0.1:8001
|