
A Go + React monorepo starter with auth and multi-tenancy
Every time I start a new project, I do the same thing. Set up the Go backend. Set up the React frontend. Figure out how they talk to each other in dev. Figure out how they deploy together. Add auth. Add sign up, sign in, sign out. Protect the routes. Store the token somewhere. And then , finally , I can start working on the thing I actually wanted to build. That part is always the same. And it's always slow. So I searched on GitHub for a starter that could save me this work. I found a lot of repos, but most of them had one of these problems: Only the backend, no frontend Only the frontend, no backend Auth was "just add your own provider later" Built for a tutorial, not for production Old versions of everything No multi-tenancy, and adding it later is painful I just wanted one repo where I could clone it, set two env vars, run make dev , and start writing my feature. That repo didn't exist the way I wanted it. So I built it. gin-react-monorepo Here it is: github.com/calebeaires/gin-reac
Continue reading on Dev.to
Opens in a new tab



