Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jincod/aspnetcoredemoapp
ASP.NET Core demo app with webpack bundle
https://github.com/jincod/aspnetcoredemoapp
aspnetcore buildpack heroku webpack
Last synced: about 2 months ago
JSON representation
ASP.NET Core demo app with webpack bundle
- Host: GitHub
- URL: https://github.com/jincod/aspnetcoredemoapp
- Owner: jincod
- License: mit
- Created: 2015-09-23T08:12:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-25T13:17:08.000Z (over 1 year ago)
- Last Synced: 2024-04-15T02:29:17.629Z (9 months ago)
- Topics: aspnetcore, buildpack, heroku, webpack
- Language: C#
- Homepage: https://aspnetcoredemoapp.herokuapp.com/
- Size: 1.09 MB
- Stars: 100
- Watchers: 9
- Forks: 96
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASP.NET Core Demo App
[![Build status](https://ci.appveyor.com/api/projects/status/p3iet9wrmg8jxlmx?svg=true)](https://ci.appveyor.com/project/jincod/aspnet5demoapp)
## Usage
```bash
npm install
dotnet restore
dotnet run -p src/AspNetCoreDemoApp/AspNetCoreDemoApp.csproj
npm start
```## Deploy to Heroku
### Manual
Using custom buildpack [dotnetcore-buildpack](https://github.com/jincod/dotnetcore-buildpack)
```bash
heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack
heroku buildpacks:add --index 1 heroku/nodejs
```[Using Multiple Buildpacks for an App](https://devcenter.heroku.com/articles/using-multiple-buildpacks-for-an-app)
### Heroku Deploy button
Click the button below to set up this sample app on Heroku:
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/jincod/AspNet5DemoApp)
## Blog posts
- [Deploying ASP.NET Core on heroku](https://jincod.tumblr.com/post/152290263970/deploying-aspnet-core-on-heroku)
- [Integrate ASP.NET 5 and Webpack with Hot Module Replacement plugin](http://jincod.tumblr.com/post/135043543538/integrate-aspnet-5-and-webpack-with-hot-module)