Created
March 17, 2024 11:15
-
-
Save dumindu/153b6cf8a346d3a1aad51e17291d4dda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Warmly welcome your suggestions, desired changes, and innovative ideas | |
to improve https://learning-cloud-native-go.github.io docs. | |
Good luck with Learning Cloud Native Go! ~ Dumindu |
@BarbarianBunny Thanks for reporting. Updated the docs.
docker-compose.yml
->compose.yml
docker-compose
->docker compose
6. Update cmd/api/main.go Typo
- validatorUil -> validatorUtil
- v := validatorUil.New() -> v := validatorUtil.New()
import validatorUil "myapp/util/validator"
func main() {
c := config.New()
v := validatorUil.New()
@BarbarianBunny Sorry for the later reply and thanks again for reporting these. Updated the docs.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At docker-compose.yml
it has
version: '3'
in the docker-compose.yml code.This line should be removed as it gives a warning
'version' is obsolete
whendocker-compose build
is used