Nitrocloud LogoNitroStack
/cli
/init

Init Command

Usage

Bash
nitrostack-cli init my-project

Options

Bash
nitrostack-cli init my-project --template typescript-auth

Available Templates

  • `typescript` - Basic TypeScript template
  • `typescript-auth` - Full-featured e-commerce template with auth

What It Creates

my-project/
├── src/
│   ├── modules/         # Feature modules
│   ├── app.module.ts    # Root module
│   └── index.ts         # Entry point
├── widgets/             # UI components
├── .env.example         # Environment template
└── package.json

Next Steps

  1. `cd my-project`
  2. `npm install`
  3. `npm run dev`