Mycro Services boilerplate
A modern, ready-to-use microservices boilerplate designed to help you kickstart scalable applications with minimal setup. It includes a frontend, backend, and database layer — all containerized and production-ready with Docker.
Gettin Started
Make it your own
- First and foremost, remove the .git file:
rm -rf .git - Second, initialize a new git repository:
git init - Then add and commit your changes using
git add . - Then
git commit -m 'initial commit' - Now push and Voilà, you have created your own repository!
Startup
Welcome to ze-mycroservices-boilerplate.
- You can now have two terminals open, then start the frontend and the backend separately (see the READMEs in frontend and backend folder)
- or you can start everything in dev and prod environments using docker
- (recommended for dev) for a dev environment using
docker compose up --build(changes refresh automatically) - for a prod environment using:
docker compose -f docker-compose.yml -f docker-compose.prod.yml up --build -d
- (recommended for dev) for a dev environment using