https://github.com/csharpfritz/sample-nerddinner
https://github.com/csharpfritz/sample-nerddinner
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/csharpfritz/sample-nerddinner
- Owner: csharpfritz
- License: other
- Created: 2016-07-12T21:28:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T17:25:40.000Z (over 8 years ago)
- Last Synced: 2025-02-23T22:06:11.201Z (3 months ago)
- Language: JavaScript
- Size: 923 KB
- Stars: 2
- Watchers: 1
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
NerdDinner 1.0 Sample
----------
NerdDinner 1.0 is an ASP.NET Core sample application based on the [ASP.NET MVC 2009 project](http://www.nerddinner.com/) with the same name. This repository is a working single page application(SPA) sample that uses Angular 1 and ASP.NET Core 1.0.
Set Up
----------------------**Prerequisite**
Download .NET Core for Windows, Linux, Mac for more options please visit the [dot.net](https://www.microsoft.com/net/download#core).**Running NerdDinner 1.0 Sample**
1. Clone the sample-NerdDinner application
```sh
git clone https://github.com/aspnet/sample-NerdDinner.git
```2. Navigate to your local copy of the sample-NerdDinner and, restore the packages specified in the project.json file.
```sh
cd sample-NerdDinner
dotnet restore
```

3. Navigate to the NerdDinner.web folder and run the application
```sh
cd NerdDinner.web
dotnet run
```

4. Navigate to` localhost:5000 `
Ready to go sample
----------------------
1. NerdDinner 1.0 is [ASP.NET Core 1.0](https://docs.asp.net/en/latest/getting-started.html) application and will run on Windows, Linux,and Mac.2. This sample uses [SQLite](https://ef.readthedocs.io/en/latest/platforms/netcore/new-db-sqlite.html) backend.
- Notice that when you run the application `dotnet run` the SQLite database is built
Thank you for using the sample-NerdDinner application.