An open API service indexing awesome lists of open source software.

https://github.com/scaleit-org/dotnet-app-skeleton


https://github.com/scaleit-org/dotnet-app-skeleton

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# ProductionManagerCockpit

## Technology Stack

.NetCore->Cordova(Typescript->Angular->Ionic)

## How to Start

### Docker:
1) docker build -t AppName .
2) docker run -p 5002:5002 AppName
3) http://localhost:5002/
### Docker Compose
1) docker-compose build
2) docker-compose up
3) http://localhost:5002
### Standalone
1) dotnet restore
2) npm install
3) dotnet build
4) dotnet run
5) http://localhost:5000

### Container Security (Optional)
Build with healtcheck enabled

HEALTHCHECK --interval=5m --timeout=3s \
CMD curl -f http://localhost:5002/ || exit 1

### Skeleton Functionality
1) DotNet Server for static files
2) WebSocket FE/BE communication
3) Ionic frontend

## Learning Material

Reactive Manifesto: https://www.reactivemanifesto.org/

Reactive Programming: https://gist.github.com/staltz/868e7e9bc2a7b8c1f754

Ionic Presentation: http://ionicframework.com/present-ionic/slides/#/26