My #100DaysOfDevOps challenge just hit its biggest milestone yet: today, I officially launched our SaaS, Heeratrack.
Heeratrack is a B2B platform designed to automate inventory and worker management for the diamond industry. But for this community, I want to talk about how we actually built and shipped it.
The Stack & Workflow:
Application Logic: Built entirely on the MERN stack (MongoDB, Express, React, Node.js).
Containerization: To avoid the classic "it works on my machine" problem between the two of us, the entire application is containerized using Docker. This made moving from development to production incredibly smooth.
CI/CD: We automated our deployment pipelines using GitHub Actions. Pushing code now automatically builds our images and deploys them without manual server SSH-ing.
Shipping a live product to www.heeratrack.com is a completely different beast than building a portfolio project. Managing DNS records, securing SSL certificates, and ensuring our load balancers route traffic correctly tested everything I’ve learned about DevOps over the last few months.
Check out the live site here: www.heeratrack.com
Top comments (0)