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
- Host: GitHub
- URL: https://github.com/csainty/nancy-veil-sample
- Owner: csainty
- Created: 2017-04-17T13:31:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-17T13:45:18.000Z (almost 9 years ago)
- Last Synced: 2025-06-12T15:52:43.867Z (8 months ago)
- Topics: aspnetcore, dotnet-standard, dotnetcore, nancyfx, viewengine
- Language: C#
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```