- Make sure you already have Go and dep installed in your machine, otherwise refer to the following sources to get them:
- Step into project root directory and run
dep ensure
to install required packages:
cd ./gabble/server/
dep ensure
- Run the application using
go run
command:
go run ./src/main.go
- Make sure you already have Docker installed in your machine, otherwise install Docker:
- Build the Dockerfile available in the project's root directory:
cd ./gabble/server
docker build -t gabble-backend .
- Finally run the container you just build using
docker run
:
docker run gabble-backend
Every contribution to this project is welcome.
Licensed under the MIT License