my-app/
├── src/
│ ├── actions/ # Business logic actions
│ ├── controllers/ # HTTP controllers
│ ├── middleware/ # Custom middleware
│ ├── models/ # Database models
│ ├── config/ # Application configuration
│ ├── bootstrap.rs # Service registration
│ ├── routes.rs # Route definitions
│ └── main.rs # Application entry point
├── frontend/ # Inertia.js frontend (if selected)
│ ├── src/
│ │ ├── pages/ # React page components
│ │ └── types/ # TypeScript types
│ ├── package.json
│ └── vite.config.ts
├── migrations/ # Database migrations
├── .env # Environment variables
├── .env.example # Environment template
├── Cargo.toml # Rust dependencies
└── README.md