Problem
It would be nice if the application could be built as a single binary release
and not run a separate frontend and backend service.
you could use https://pkg.go.dev/embed
to embed the frontend build into the backend in order to achieve this.
it looks like you are already using it with the reciepefs
https://github.com/sagarsuperuser/velox/blob/e6db7776bb62b4c73f1dea3115a46705d5d319da/internal/recipe/embed.go#L21
Problem
It would be nice if the application could be built as a single binary release
and not run a separate frontend and backend service.
you could use https://pkg.go.dev/embed
to embed the frontend build into the backend in order to achieve this.
it looks like you are already using it with the reciepefs
https://github.com/sagarsuperuser/velox/blob/e6db7776bb62b4c73f1dea3115a46705d5d319da/internal/recipe/embed.go#L21