- Updated .env.example to reflect new LLM configuration with Aliyun's API. - Enhanced .gitignore to include additional files and directories for better exclusion of sensitive and build artifacts. - Added docker-compose.yml for streamlined deployment of backend and frontend services. - Introduced Dockerfiles for both backend and frontend to facilitate containerized builds. - Created README.md to provide comprehensive project documentation and setup instructions. - Established nginx configuration for frontend to support API proxying and static file serving.
59 lines
No EOL
545 B
Text
59 lines
No EOL
545 B
Text
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 环境变量(保护敏感信息)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
.eggs/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 测试
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Cursor
|
|
.cursor/
|
|
|
|
# 文档与测试程序
|
|
mydoc/
|
|
mytest/
|
|
|
|
# 日志文件
|
|
backend/logs/
|
|
*.log
|
|
|
|
# 上传文件
|
|
backend/uploads/
|
|
|
|
# Docker 数据
|
|
data/ |