pushd services/source/cmd
[ -a source.prof ] && rm source.prof
[ -a cmd ] && rm cmd
go build .
clear
GOGC=off ./cmd --cert-file=../../../certs/service.crt --key-file=../../../certs/service.key --insecure=true \
    --log=info \
    \
    --history-expiration=5s \
    --host-auth-method=fake \
    --host-url=wss://localhost:3001  \
    --metrics-method=logged  \
    --profiling-file=source.prof

popd
