English | 简体中文
A curated collection of production-ready engineering templates for backend, frontend, DevOps and deployment.
The goal is to reduce the cost of starting new projects by reusing battle-tested engineering infrastructure.
- Features
- Repository Structure
- Available Templates
- Quick Start
- Documentation
- Related Repository
- Philosophy
- Contributing
- License
- Production-ready engineering templates
- Backend, frontend and DevOps infrastructure
- Deployment scripts and CI/CD examples
- Reusable configuration and code snippets
- Real-world engineering patterns
engineering-assets
│
├─ README.md # Project overview and usage guide
├─ LICENSE # License information (MIT recommended)
├─ .gitignore # Git ignore rules
├─ .editorconfig # Editor formatting rules
├─ CHANGELOG.md # Version history
├─ CONTRIBUTING.md # Contribution guidelines
├─ CODEOWNERS # Maintainers / reviewers
│
├─ docs # Documentation
│ ├─ 00-quickstart.md # Quick start guide
│ ├─ 01-how-to-use-templates.md # How to use templates
│ ├─ 02-deployment-playbook.md # Deployment instructions
│ └─ 03-style-guide.md # Coding / project style guide
│
├─ templates # Reusable project templates
│ ├─ backend # Backend project templates
│ │ ├─ springboot-api # Spring Boot API starter
│ │ └─ springboot-multi-module # Spring Boot multi-module structure
│ │
│ ├─ frontend # Frontend project templates
│ │ ├─ vue3-vite-admin # Vue 3 + Vite admin template
│ │ └─ uniapp # UniApp application template
│ │
│ └─ database # Database related templates
│ ├─ mysql # MySQL schema examples
│ └─ migration # Migration scripts templates
│
├─ deploy # Deployment scripts
│ ├─ linux # Native Linux deployment
│ │ ├─ java-api # Java API deployment scripts
│ │ └─ vue-admin # Vue admin deployment scripts
│ │
│ └─ docker # Docker deployment examples
│ ├─ java # Dockerfile for Java apps
│ └─ compose # Docker Compose templates
│
├─ devops # DevOps infrastructure templates
│ ├─ nginx # Nginx reverse proxy configs
│ │
│ ├─ ci # CI/CD pipelines
│ │ ├─ github-actions # GitHub Actions templates
│ │ └─ jenkins # Jenkins pipeline templates
│ │
│ └─ monitoring # Monitoring utilities
│ ├─ healthcheck # Service health check scripts
│ └─ logrotate # Log rotation configs
│
├─ snippets # Reusable code snippets
│ ├─ maven # Maven build snippets
│ ├─ spring # Spring Boot configuration snippets
│ ├─ bash # Shell script snippets
│ └─ vue # Vue frontend snippets
│
└─ tools # Helper tools for template usage
├─ init-project.sh # Initialize a project from templates
├─ render-template.sh# Render template variables
└─ validate.sh # Validate template structure
Templates for backend services.
Examples:
- Spring Boot API project structure
- Spring Boot multi-module architecture
- Maven build configuration
- Redis integration
Templates for modern frontend applications.
Examples:
- Vue3 + Vite admin template
- UniApp project structure
- Axios wrapper
- Permission guard
Production deployment patterns.
Examples:
- Linux deployment scripts
- systemd service templates
- rollback scripts
- release directory structure
Infrastructure templates.
Examples:
- Nginx reverse proxy configs
- HTTPS configuration
- CI/CD pipelines
- monitoring scripts
Reusable database templates.
Examples:
- MySQL schema template
- migration template
Reusable engineering snippets.
Examples:
- Maven plugins
- Spring configuration
- Bash scripts
- Vue utilities
Example: start a new backend service using a template.
cp -r templates/backend/springboot-api my-apicp -r deploy/linux/java-api my-api/scriptsSee the deployment playbook:
docs/02-deployment-playbook.mdEngineering guides and playbooks are located in:
docs/
Recommended reading order:
1. **Quick Start**
`docs/00-quickstart.md`
2. **Project Structure**
`docs/01-how-to-use-templates.md`
3. **Deployment Playbook**
`docs/02-deployment-playbook.md`
Looking for ready-to-run project starters?
👉 See:
https://github.com/yourname/project-starters
This repository follows a simple engineering principle:
Automate repetition.
Reuse infrastructure.
Focus on building real features.
Contributions are welcome.
You can contribute by:
- improving templates
- adding new infrastructure patterns
- fixing documentation
- sharing production-tested scripts
MIT