/cli
/init

Init Command

Usage

nitrostack init my-project

Options

nitrostack 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. `nitrostack dev`