Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.19 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.19 KB

Demo SignalR 001

An ASP.NET Core SignalR with TypeScript and Webpack targeting CF (Cloud Foundry).

Demo Snapshot SignalR App

Develop

The application follows the instructions as outlined in article Use ASP.NET Core SignalR with TypeScript and Webpack. The additional work added include folder structure, CF files, and deployment scrpits.

# build the UI
npm run build:ui

# buld the App
npm run build:app

# start the app
npm start

Deploy

The deployment targets the CF platform. You can sign up for a free account here.

The manifest uses the following minimal settings

---
applications:
- name: demo-signalr-dnc001
  buildpack: dotnet_core_buildpack
  memory: 128M
  disk_quota: 256M
  path: ./bin
  env:
    ASPNETCORE_ENVIRONMENT: Development
# deploy to a Cloud Foundry provider
# replace demo-signalr-app with a name of your choosing
npm run publish demo-signalr-app