https://github.com/DarthFubuMVC/fubumvc
A front-controller style MVC framework for .NET
https://github.com/DarthFubuMVC/fubumvc
Last synced: 4 months ago
JSON representation
A front-controller style MVC framework for .NET
- Host: GitHub
- URL: https://github.com/DarthFubuMVC/fubumvc
- Owner: DarthFubuMVC
- License: other
- Created: 2010-01-09T20:22:24.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T08:28:06.000Z (over 1 year ago)
- Last Synced: 2024-09-23T09:04:41.793Z (about 1 year ago)
- Language: C#
- Homepage: http://fubumvc.github.io
- Size: 188 MB
- Stars: 427
- Watchers: 29
- Forks: 151
- Open Issues: 90
-
Metadata Files:
- Readme: readme.markdown
- License: license.txt
Awesome Lists containing this project
- awesome-dot-dev - FubuMVC - A front-controller style MVC framework for .NET (Web Frameworks)
- awsome-dotnet - FubuMVC - A front-controller style MVC framework for .NET (Web Frameworks)
- awesome-csharp - FubuMVC - A front-controller style MVC framework for .NET (Web Frameworks)
- awesome-dotnet-cn - FubuMVC - .NET前端控制器(front-controller)风格的MVC框架。 (Web框架)
- awesome-dotnet - FubuMVC - A front-controller style MVC framework for .NET (Web Frameworks)
- awesome-dotnet - FubuMVC - A front-controller style MVC framework for .NET (Web Frameworks)
README
# Building FubuMVC
The FubuMVC codebase still uses Rake for build automation, but as of September 2015, you don't **have** to use Rake to develop with FubuMVC if you don't want to. You **will need
to have Node.js or Io.js and npm installed** in order to build the client side assets for FubuMVC's diagnostics package before working with the C# code.
## With Rake
Assuming you have Ruby 2.1+ installed on your computer, go to a command line and type...
1. bundle install
1. rake
## Visual Studio.Net Only
There is a small command file called `build.cmd` that can be executed once to bring down nuget and npm dependencies and build the client side assets that FubuMVC
needs for its embedded. diagnostics. Run this command at least once before opening Visual Studio.Net.
From there, open the solution file at `src/FubuMVC.sln` and go to town.
# Working with Storyteller
* `rake open_st` -- Opens the Storyteller test suite in the Storyteller client for interactive editing and execution
* `rake storyteller` -- Runs all the Storyteller specifications
# Working with Diagnostics
Open the diagnostics harness application to the browser with the command `rake diagnostics`. This command will start webpack in a new window against the client side
attributes in the `javascript` folder in "watched" mode. This command also compiles and starts the `DiagnosticsHarness` application in a NOWIN server before opening a browser
window to the newly launched application. The browser will auto-refresh whenever a new version of the webpack `bundle.js` file is saved. You will have to stop and restart
the FubuMVC application to see any changes to the server side.