san-2025/
├── backend/ # Backend application folder
│ ├── routes/
│ ├── controllers/
│ └── ...
├── frontend/ # Frontend application folder
│ ├── src/
│ ├── public/
│ └── ...
└── ...
Navigate to backend directory:
cd backend
pnpm install
pnpm run devNavigate to frontend directory:
cd frontend
pnpm install
pnpm run dev- Backend runs on:
http://localhost:3000 - Frontend runs on:
http://localhost:5173
- Ensure all tests pass and changes are committed to main branch
- Create a new production tag:
git tag production-v-1.0.0 # Update version number as needed
git push origin production-v-1.0.0- CI/CD will automatically:
- Run tests
- Build applications
- Deploy to production if all checks pass
Note: Production tags must follow the format production-* with semantic versioning practice (e.g., production-v-1.0.0). Learn more here https://semver.org/