go-saas / kit

Microservice compatible starter kit for golang saas project
https://go-saas.github.io/kit/
Apache License 2.0
184 stars 33 forks source link

how can i start this project #3

Open cesc1802 opened 2 years ago

goxiaoy commented 2 years ago

I am still working on this project actively. It is not production ready now. There will be docker-compose files provided in the future.

k2glyph commented 2 years ago

@Goxiaoy Getting this error any idea. Did I miss anything here?

make[1]: Entering directory '/home/auzmor/product/core/sumelms/go-saas-kit/user'
buf generate ../proto --path ../proto/user
Failure: plugin validate: could not find protoc plugin for name validate
make[1]: *** [Makefile:37: api] Error 1
make[1]: Leaving directory '/home/auzmor/product/core/sumelms/go-saas-kit/user'
make: *** [Makefile:48: all] Error 2
goxiaoy commented 2 years ago

@k2glyph call init before make

make init

Or you can run docker-compose to start the headless version. (ui is still in progress)

docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build
k2glyph commented 2 years ago

Thanks @Goxiaoy