{"id":28547661,"url":"https://github.com/fkucukkara/mvc101","last_synced_at":"2026-05-17T09:47:20.002Z","repository":{"id":294028294,"uuid":"985782243","full_name":"fkucukkara/mvc101","owner":"fkucukkara","description":"This is a template project built with ASP.NET Core MVC to explore and learn the fundamentals of Model-View-Controller architecture in .NET.","archived":false,"fork":false,"pushed_at":"2025-06-29T13:26:09.000Z","size":1048,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T14:29:33.474Z","etag":null,"topics":["csharp","dotnet-core","mvc-framework","template"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fkucukkara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-18T14:15:54.000Z","updated_at":"2025-06-29T13:26:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"c8030a00-852c-41d2-b584-315ab3ba1887","html_url":"https://github.com/fkucukkara/mvc101","commit_stats":null,"previous_names":["fkucukkara/mvc101"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fkucukkara/mvc101","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Fmvc101","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Fmvc101/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Fmvc101/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Fmvc101/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fkucukkara","download_url":"https://codeload.github.com/fkucukkara/mvc101/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fkucukkara%2Fmvc101/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264175302,"owners_count":23568437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet-core","mvc-framework","template"],"created_at":"2025-06-10T00:37:36.771Z","updated_at":"2026-05-17T09:47:14.948Z","avatar_url":"https://github.com/fkucukkara.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MVC101 - ASP.NET Core MVC Playground\n\nThis is a template project built with ASP.NET Core MVC to explore and learn the fundamentals of Model-View-Controller architecture in .NET.\n\n## Project Overview\n\n- **Framework**: ASP.NET Core 9.0\n- **Project Type**: Web Application (MVC)\n- **Language**: C#\n- **Development Environment**: Visual Studio 2022\n\n## Features\n\n- Standard MVC project structure\n- Built-in authentication and authorization\n- HTTPS configuration\n- Static file serving\n- Pre-configured routing\n- Development/Production environment settings\n\n## Project Structure\n\n```\n├── Controllers/         # Contains MVC controllers\n│   └── HomeController.cs\n├── Models/             # Data models and view models\n│   └── ErrorViewModel.cs\n├── Views/              # Razor views and layouts\n│   ├── Home/\n│   │   ├── Index.cshtml\n│   │   └── Privacy.cshtml\n│   └── Shared/\n│       └── _Layout.cshtml\n└── wwwroot/           # Static files (CSS, JS, images)\n    ├── css/\n    ├── js/\n    └── lib/\n```\n\n## Getting Started\n\n### Prerequisites\n\n- .NET 9.0 SDK or later\n- Visual Studio 2022 or your preferred IDE\n\n### Running the Project\n\n1. Clone the repository\n2. Open the solution in Visual Studio\n3. Press F5 or click \"Run\" to start the application\n\nThe application will start on:\n- HTTPS: https://localhost:7021\n- HTTP: http://localhost:5192\n\n## Configuration\n\n- `appsettings.json` - Main configuration file\n- `appsettings.Development.json` - Development-specific settings\n- `Properties/launchSettings.json` - Launch profiles and environment settings\n\n## Available Routes\n\nBy default, the application uses a conventional routing pattern:\n```\n{controller=Home}/{action=Index}/{id?}\n```\n\n## Development Features\n\n### Hot Reload\nHot Reload automatically applies code changes to your running application without requiring a manual restart. In ASP.NET Core MVC:\n- Views (.cshtml files) support runtime compilation and updates\n- C# code changes are applied while debugging\n- Works in both Visual Studio and `dotnet watch`\n- Limitations: Some changes like method signature updates require restart\n\nOther Features:\n- Development exception page with detailed error information\n- HTTPS redirection\n- Static file middleware\n- MVC view compilation\n\n## Contributing\n\nThis is a playground project meant for learning and experimentation. Feel free to:\n- Fork the repository\n- Create your feature branch\n- Experiment with different MVC features\n- Share your learnings\n\n## License\n[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n## Additional Resources\n\n- [ASP.NET Core Documentation](https://docs.microsoft.com/en-us/aspnet/core/)\n- [MVC Pattern](https://docs.microsoft.com/en-us/aspnet/core/mvc/overview)\n- [Razor Syntax](https://docs.microsoft.com/en-us/aspnet/core/mvc/views/razor)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkucukkara%2Fmvc101","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffkucukkara%2Fmvc101","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffkucukkara%2Fmvc101/lists"}