Backend code for the Ad-Server SVC.
Excecute the commands sequentially in order to successfully run the application locally on a Mac OS. For a different OS use the links that follow
brew install golang
go version
Golang - https://go.dev/doc/install
make server
docker build -t adserver-svc .
docker run \
--name advserver-svc \
--rm -it \
-v /:/host:ro \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
--privileged \
--pid=host \
--network=host \
adserver-svc:latest