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

https://github.com/csainty/nancy-veil-sample

A sample repo for using Veil with Nancy
https://github.com/csainty/nancy-veil-sample

aspnetcore dotnet-standard dotnetcore nancyfx viewengine

Last synced: 4 months ago
JSON representation

A sample repo for using Veil with Nancy

Awesome Lists containing this project

README

          

# nancy-veil-sample

A sample of using Veil with Nancy

## Run locally
```
dotnet restore
dotnet run
open http://localhost:5000
```

## Run in docker
```
dotnet restore
dotnet build -c Release
docker build -t nancy-veil-sample .
dotnet run --rm -p 5000:5000 nancy-veil-sample
```