Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baronfel/giraffe-cancellation-sample
https://github.com/baronfel/giraffe-cancellation-sample
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/baronfel/giraffe-cancellation-sample
- Owner: baronfel
- Created: 2019-09-07T03:19:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-07T03:19:42.000Z (about 5 years ago)
- Last Synced: 2024-10-20T08:56:28.409Z (27 days ago)
- Language: F#
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# giraffe_cancellation_sample
A [Giraffe](https://github.com/giraffe-fsharp/Giraffe) web application, which has been created via the `dotnet new giraffe` command.
## Build and test the application
### Windows
Run the `build.bat` script in order to restore, build and test (if you've selected to include tests) the application:
```
> ./build.bat
```### Linux/macOS
Run the `build.sh` script in order to restore, build and test (if you've selected to include tests) the application:
```
$ ./build.sh
```## Run the application
After a successful build you can start the web application by executing the following command in your terminal:
```
dotnet run src/giraffe_cancellation_sample
```After the application has started visit [http://localhost:5000](http://localhost:5000) in your preferred browser.