Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/servehub/serve

Infrastructure as Code
https://github.com/servehub/serve

cd ci consul docker gocd golang kubernetes marathon yaml

Last synced: 27 days ago
JSON representation

Infrastructure as Code

Awesome Lists containing this project

README

        

# Installing

## Go

Make sure you have Go 1.19.+ installed:

```sh
brew install go
```

## Dependencies

```sh
# install dependencies via makefile script
make deps

# build codegen configs
make build-configs

# set $GOPATH env variable (should be your home directory)
export GOPATH=${HOME}/go

# download dependency
go mod vendor

# build
make

# test to ensure everything is working
make test
```