run in container with everything included

docker-compose up

run service locally postgres in docker

postgresql and basic_server_db in postgres must be present for the service to run

docker compose -f postgres.yml up

```cli
go run cmd/basicserver/main.go
make run

build executable for linux

GOOS=linux GOARCH=amd64 go build -o bin/app cmd/basicserver/main.go