https://github.com/ukcoderj/aspnet-core-angular2-signalr-modified
Playing with this repo -> https://github.com/FabianGosebrink/ASPNETCore-Angular-SignalR-Typescript
https://github.com/ukcoderj/aspnet-core-angular2-signalr-modified
Last synced: about 1 year ago
JSON representation
Playing with this repo -> https://github.com/FabianGosebrink/ASPNETCore-Angular-SignalR-Typescript
- Host: GitHub
- URL: https://github.com/ukcoderj/aspnet-core-angular2-signalr-modified
- Owner: ukcoderj
- Created: 2017-02-14T15:55:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T17:04:19.000Z (over 9 years ago)
- Last Synced: 2024-11-04T14:57:23.545Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 9.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### This is a modified clone of https://github.com/FabianGosebrink/ASPNETCore-Angular-SignalR-Typescript
### If you are starting from scratch, please use the [original](https://github.com/FabianGosebrink/ASPNETCore-Angular-SignalR-Typescript) . It is much cleaner/tidier than this one :).
## Code
(Details copied from [original repository](https://github.com/FabianGosebrink/ASPNETCore-Angular-SignalR-Typescript))
Clone this repo and run
```javascript
npm start
```
Browse to
```javascript
http://localhost:8080
```
(No SignalR but live-reloading)
Or
```javascript
http://localhost:5000
```
(SignalR but no live-reload)
To see the page then. SignalR is not working there because of CORS-Issues with signalR. Just load the application in Visual Studio and press the Play Button.
If you want to get production builds you can type
```javascript
gulp build:web:prod
```
to build the production-ready build or type
```javascript
gulp build:all
```
to get the .dist-folder filled with all the cross-platform builds.
After this you can type
```csharp
dotnet run
```
to start the ASP.NET Server or just press the Play-Button in Visual Studio.