An ASP.NET Core SignalR with TypeScript and Webpack targeting CF (Cloud Foundry).
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
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