Welcome to NestGo! Before you start building, you need to ensure you have Go v1.22+ installed on your machine.
To unlock the Enterprise routing and scaffolding features of NestGo, install the CLI completely globally:
go install github.com/nestgo/nestgo/cmd/nestgo@latestThe CLI runs wildly fast. You can speed up your typing by hooking up the autocomplete profiles:
# Add to your shell profile (~/.bashrc, ~/.zshrc)
source <(nestgo completion bash)You're ready to fly! Generate a boilerplate app by typing:
nestgo new enterprise-api
cd enterprise-api
nestgo dev