Update API and WebSocket base URLs to use environment variables for better configuration management

This commit is contained in:
liu
2026-01-30 00:45:04 +08:00
parent 197ce5e7ea
commit 246515b43e
11 changed files with 310 additions and 2 deletions

42
.dockerignore Normal file
View File

@@ -0,0 +1,42 @@
# Git
.git
.gitignore
.gitattributes
# 文档
README.md
LICENSE
开发文档/
# IDE
.vscode/
.idea/
*.iml
*.swp
*.swo
# 构建产物Docker 内会重新构建)
frontend/node_modules/
frontend/dist/
backend/target/
*.jar
*.war
# 日志
*.log
npm-debug.log*
yarn-debug.log*
# 系统文件
.DS_Store
Thumbs.db
Desktop.ini
# Docker 相关(避免递归)
docker/
.dockerignore
# 其他
*.local
.cache/
coverage/