Hi i'm DuarteBv, I recently started learning about Golang and I have decided to document it so that it can be helpful for other people who are getting started as well.
- Rest API with Clean Architecture
- MongoDB
- Dockerized enviroments
git clone https://github.com/DuarteDc/learn-golang
cd learn-golang
- Rename file .env.example to .env
Note: If you want change db url edit .env file
- Build app with command line
docker build -t go-app .
- Run app
docker run -p 8080:8080 --name app-name go-app
docker-compose up --build