module
0.0.0-20190507170933-7dd5a6885671
Repository: https://github.com/atluss/fileserverwithmq.git
Documentation: pkg.go.dev
# README
File Server with MQ
How to install docker
- Install Docker-CE (ubuntu);
- Install Docker compose;
sudo docker-compose up
.
How to use proto files
About gRPC. After install protoc and install plugin for go. Don't forget add ~/go/bin to your PATH, just like this for example: in ~/.profile in your home directory add this to end of file:
if [ -d "$HOME/go/bin" ] ; then
PATH="$PATH:$HOME/go/bin"
fi
And find it: echo $PATH
How to generate *.proto
to *.go
In folder where *.proto
input it in terminal: protoc --go_out=. file_name.proto