Command-line tool for generating Ncobase projects and components.
go install github.com/ncobase/cli/cmd/nco@latestDownload the appropriate binary from the releases page and place it in your PATH.
# Show help
nco --help
# Create a new core module
nco create core auth-service
# Create a business module with MongoDB
nco create business payment --use-mongo --with-test
# Create a plugin
nco create plugin logger
# Create a standalone application
nco create webapp dashboard --standalone
# Show version information
nco versioncreate- Generate new components (core, business, plugin, or custom)version- Show version informationdocs- Generate documentationplugin- Plugin management commandsmigrate- Database migration commands
# Build for current platform
make build
# Build for all platforms
make build-all
# Install locally
make install
# Run tests
make test
# Clean build artifacts
make cleanSee LICENSE file for details.