go started template for building micro service using framework echo.
.
├── app
│ ├── context
│ ├── library
│ │ ├── redis
│ │ ├── sentry
│ │ └── token
│ ├── middlewares
│ ├── routes
│ └── validation
├── config
│ └── constant
├── db
├── external
│ └── jsonplaceholder
├── internal
│ ├── authentication
│ └── users
├── resource
│ ├── html
│ ├── log
│ ├── media
│ └── ssl
└── util
├── arrays
├── bcrypt
├── logger
├── numbers
└── stringy
asas
- This command will call
lint
,build
, andrun
command
make up
- This command will build this project to docker image & delete the builder image
make build
- This command will call
destroy
& run container base on image
make run
- This command will call
lint
& run test
make test
- This command will call
lint
& run test then coverage file
make test-cover
- This command will linting
*.go
and formatted
make lint
- This command will call
lint
& start this app with hot reload if any change the code
make dev
- This command will call
lint
& start this app
make start