EchoNextv1.4
CLI
Stable v1.4.8

Initialize a project

Scaffold an EchoNext service with the CLI.

Initialize a project

Install the CLI version that matches these docs:

go install github.com/abdussamadbello/echonext/cmd/echonext-cli@v1.4.8

Create a project with an explicit module path:

echonext init inventory --module github.com/acme/inventory
cd inventory
go mod tidy
go run ./cmd/api

The scaffold separates application entrypoints, internal configuration, domains, migrations, and operational setup. Review generated configuration and secrets before using the project outside local development.

Run echonext --help and echonext init --help for the flags supported by your installed version.

On this page