Date: 2026-03-11T11:59:39Z
The repository is organized as a Classic ASP MVC starter with a clear split between deploy entry, shared runtime, application code, database assets, and operational tooling.
MVC-Starter/
├── app/ # Application-specific MVC layer
│ ├── controllers/ # Controllers and controller includes
│ ├── models/ # Intended POBO/model location (currently empty)
│ ├── repositories/ # Intended repository location (currently empty)
│ └── views/ # Server-rendered ASP views
│ ├── Error/
│ ├── Home/
│ └── shared/
├── core/ # Framework/runtime libraries and dispatcher
├── db/ # Database file and future migrations
│ ├── migrations/
│ └── webdata.accdb
├── docs/ # Generated brownfield documentation
├── public/ # IIS web root and request entrypoint
│ ├── Default.asp
│ └── web.config
├── scripts/ # Scaffolding and migration tooling
├── _bmad/ # Installed BMAD framework assets
├── _bmad-output/ # Generated BMAD workflow artifacts
└── .github/ # Copilot/BMAD prompt and agent support files
public/Purpose: deploy-facing web root and request bootstrap.
Default.aspweb.config with rewrite and runtime configcore/Purpose: shared framework/runtime layer.
app/Purpose: project-specific extension surface.
controllers/ contains active controllers and include registrationviews/ contains page templates and shared layout filesmodels/ and repositories/ are intended generator targetsdb/Purpose: database storage and schema evolution support.
webdata.accdbmigrations/ directory for migration filesscripts/Purpose: development and operations support tooling.
public/Default.aspcore/autoload_core.aspcore/mvc.aspscripts/runMigrations.vbspublic/web.config - IIS routing and runtime application settingsREADME.md - setup and workflow guidance.github/copilot-instructions.md - BMAD/Copilot workflow guidance for repo maintenancepublic/, not app/core/app/scripts/docs/public/ as the site root.Powered by TurnKey Linux.