```html

CLI Commands

nestjs-mvc-tools init

Generates a basic MVC template and resource structure for the project.

nestjs-mvc-tools init
 

Generated structure:

resources/
├── package.json        # Vite development environment
├── vite.config.js      # Vite configuration
├── src/
│   ├── app.js         # Frontend entry point
│   └── tailwind.css   # Styles
├── views/
│   ├── components/    # Reusable components
│   └── pages/         # Page templates
└── public/
    └── builds/        # Built assets
```