包含以下内容: 1. Spring Boot后端项目结构 2. Vue.js前端项目结构 3. Docker Compose部署配置 4. MySQL数据库初始化脚本 5. Redis缓存配置 6. Nginx反向代理配置 7. 完整的项目文档 技术栈: - 后端: Spring Boot 2.7.18 + Java 11 + MyBatis Plus - 前端: Vue.js 3 + TypeScript + Element Plus - 数据库: MySQL 8.0 + Redis 7 - 部署: Docker Compose + Nginx 已部署服务: - 后端API: http://localhost:18080 - 前端界面: http://localhost:13000 - 数据库管理: http://localhost:18081 - MySQL: localhost:13306 - Redis: localhost:16379
69 lines
650 B
Plaintext
69 lines
650 B
Plaintext
# Java
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
target/
|
|
build/
|
|
.mvn/
|
|
.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
dist/
|
|
.cache/
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Docker
|
|
logs/
|
|
*.log
|
|
data/
|
|
|
|
# System
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Maven
|
|
dependency-reduced-pom.xml
|
|
|
|
# Frontend build
|
|
frontend/dist/
|
|
frontend/node_modules/
|
|
|
|
# Backend build
|
|
backend/target/
|
|
backend/.settings/
|
|
backend/.classpath
|
|
backend/.project
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Logs
|
|
*.log
|
|
logs/ |