A .NET Core solution to look for the best film
Simply download .NET Core SDK https://www.microsoft.com/net/download/core
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"API_URL": "<YOUR_API_URL_HERE>" // <-- That's it Right there!
}There is a Makefile for macOS and Linux:
make buildexecutesdocker-compose buildmake runexecutesdocker-compose run
The above might work for Docker on Windows
- Install Cake as a global tool using
dotnet tool install -g Cake.Tool - Run Cake:
dotnet cake build.cake
This api have 2 main endpoitns
| Method | Route | Params(Body) | Description |
|---|---|---|---|
| GET | /api/v1/movies |
None | Returns All Movies |
| POST | /api/v1/movies/tournament |
A Movies List | Returns All Movies |
This project was heavily inspired on Beaultiful REST Api by Nate Barbettini and Aspnet Core RealWorld Example App by Thinkster