Go app to read open movie DB and query the open movie API with the results. For the possible arguments -h flag
This projects was built with go 1.19.1 so you should have that installed or build the dockerized version
Before running be sure to have a copy of the omdb in the working directory
make build
or without
go build /cmd/main.go
OMDB APi needs an api the best way is to set it on the env or pass it to the available config params
export OMDB_APIKEY = {your_api_key}
RUN
docker run --env OMDB_APIKEY go_chall {ARGS}
or
go run /cmd/main.go {ARGS}
make test
make cover