is it possible to start a golang server without building an image?

I’ve been working on the Golang server part for a few days, every time I modify the code I have to build an image to be able to test my code, I was asking myself this question :slight_smile:

“is it possible to start a Golang server without building one picture ?”

You can use the official documentation to check on how to ease up and make your development flow quicker.

https://docs.cortezaproject.org/corteza-docs/2023.9/developer-guide/corteza-server/index.html#_run_the_server

To answer your question, use make watch in server directory to quickly build and watch on changes.

it’s good for me, thank you very much