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
- `cd my-project`
- `npm install`
- `npm run dev`