Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 327 Bytes

README.md

File metadata and controls

15 lines (14 loc) · 327 Bytes
# create module
go mod init go-rest-api
# start db
docker compose up -d
# remove db
docker compose rm -s -f -v
# start app
GO_ENV=dev go run .
# run migrate
GO_ENV=dev go run migrate/migrate.go

Architecture of REST API (Go/Echo) application