mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00:00
88d3983f26
本次提交包含以下主要更改: 1. 更新 `.gitignore` 文件,移除对子目录环境变量文件的忽略。 2. 修改 `excalidraw-complete.Dockerfile`,将构建工具从 `npm` 更改为 `pnpm`,并移除不必要的补丁步骤。 3. 更新 GitHub Actions 工作流 `docker-build.yml`,移除对子模块的递归检出。 4. 修改 `excalidraw/.env.production` 文件,调整后端 API 地址为本地开发环境,并更新 Firebase 配置。 5. 移除 `husky` 相关依赖及配置,简化项目依赖。 这些更改旨在优化开发环境配置,提高构建效率,并简化项目依赖管理。
18 lines
754 B
Bash
18 lines
754 B
Bash
VITE_APP_BACKEND_V2_GET_URL=http://localhost:3002/api/v2/
|
|
VITE_APP_BACKEND_V2_POST_URL=http://localhost:3002/api/v2/post/
|
|
|
|
VITE_APP_LIBRARY_URL=https://libraries.excalidraw.com
|
|
VITE_APP_LIBRARY_BACKEND=http://localhost:3002/libraries
|
|
|
|
VITE_APP_PLUS_LP=http://localhost:3002/plus/
|
|
VITE_APP_PLUS_APP=http://localhost:3002/app/
|
|
|
|
VITE_APP_AI_BACKEND=http://localhost:3002/ai/
|
|
|
|
# socket server URL used for collaboration
|
|
VITE_APP_WS_SERVER_URL=http://localhost:3002
|
|
|
|
VITE_APP_FIREBASE_CONFIG='{"apiKey":"AIzaSyAd15pYlMci_xIp9ko6wkEsDzAAA0Dn0RU","authDomain":"","databaseURL":"","projectId":"excalidraw-room-persistence","storageBucket":"","messagingSenderId":"654800341332","appId":"1:654800341332:web:4a692de832b55bd57ce0c1"}'
|
|
|
|
VITE_APP_DISABLE_TRACKING=yes
|