ADD env variables to the .env file or in your environment look at the .env.example file for the variables needed
DB_CONTAINER is the name of the container that will be created for the database
before start container you need to create a network and add the container with db and container with the app to the network
then you need to apply the migrations to the database
go run ./cmd/migrator/main.go --storage-host= --storage-port= --storage-user= --storage-password= --migrations-path=./migrationsor
task main-migrationsto build the app
go build -o ./bin/sso ./cmd/sso/main.goor
task buildto run the app
go run ./cmd/sso/main.goor
task runto build the docker image
docker build -t sso_service .or
task docker-buildto run the docker container
docker run --name=sso -p 44044:44044 -network sso_service_network sso_serviceor
task docker-run