dotnet 7.0 API Gateway
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
Raman Maksimchuk c0afa42584
Setting up CI/CD with GitHub Actions using a standard .NET workflow (#2254)
* Create dotnet.yml
* Update dotnet.yml: Add target solution
* Update dotnet.yml: Restore Ocelot.sln
* Update dotnet.yml: .NET 9
* Update dotnet.yml: Setup .NET with multiple SDK versions
* Update dotnet.yml: Split target frameworks
* Update dotnet.yml: Unit Tests step
* Update dotnet.yml: 3 testing steps
* Add DotNet workflow config to VS-solution items
* Update dotnet.yml: Build on push, pull_request
13 hours ago
.config +semver: breaking | Release 21.0 1 year ago
.github Setting up CI/CD with GitHub Actions using a standard .NET workflow (#2254) 13 hours ago
docker #2219 Upgrade Docker, CircleCI and update to `net8.0`, `net9.0` target frameworks (#2230) 2 months ago
docs #2252 Merge release/23.4 into develop. 5 days ago
images add ocelot logo to repo 3 years ago
postman Make Ocelot work with service fabric DNS and naming service for guest exe and stateless (#242) 7 years ago
samples #1912 Use top-level statements for Program in samples and update Getting Started docs (#2244) 4 weeks ago
src Test stupid CircleCI policy 2 days ago
test #2252 Merge release/23.4 into develop. 5 days ago
.dockerignore Feat/net6.0 upgrade (#1558) 3 years ago
.editorconfig #2034 More rapid CircleCI builds (Part 1) (#2045) 10 months ago
.gitattributes Remove Ocelot specific Middleware to make Ocelot more compatible with kestrel middleware and get ready for YARP 5 years ago
.gitignore Notes about Merging Configuration Files feature in `configuration.rst` (#2048) 9 months ago
.readthedocs.yaml #1731 Read the Docs configuration file v2 (#1733) 1 year ago
GitVersion.yml hacked together load balancing reroutes in fileconfig (#211) 7 years ago
LICENSE.md Release 23.3.6 | v23.3.4 Hotfixes | October'24 release | +semver: patch (#2185) 3 months ago
Ocelot.Release.sln Setting up CI/CD with GitHub Actions using a standard .NET workflow (#2254) 13 hours ago
Ocelot.sln Setting up CI/CD with GitHub Actions using a standard .NET workflow (#2254) 13 hours ago
README.md Introducing Ocelot Guru on Gurubase.io (#2202) 1 month ago
ReleaseNotes.md Release 23.4.3 | Hot fixing #2246 | November'24 release | +semver: patch (#2252) 6 days ago
build.cake #2252 Merge release/23.4 into develop. 5 days ago
codeanalysis.ruleset #356 #695 #1924 Custom `HttpMessageInvoker` pooling (#1824) 1 year ago

README.md

Ocelot Logo

CircleCI

About

Ocelot is a .NET API Gateway. This project is aimed at people using .NET running a microservices / service-oriented architecture that need a unified point of entry into their system. However it will work with anything that speaks HTTP(S) and run on any platform that ASP.NET Core supports.

In particular we want easy integration with IdentityServer reference and Bearer tokens. We have been unable to find this in our current workplace without having to write our own Javascript middlewares to handle the IdentityServer reference tokens. We would rather use the IdentityServer code that already exists to do this.

Ocelot is a bunch of middlewares in a specific order.

Ocelot manipulates the HttpRequest object into a state specified by its configuration until it reaches a request builder middleware, where it creates a HttpRequestMessage object which is used to make a request to a downstream service. The middleware that makes the request is the last thing in the Ocelot pipeline. It does not call the next middleware. The response from the downstream service is retrieved as the requests goes back up the Ocelot pipeline. There is a piece of middleware that maps the HttpResponseMessage onto the HttpResponse object and that is returned to the client. That is basically it with a bunch of other features!

Features

A quick list of Ocelot's capabilities, for more information see the Documentation.

Install

Ocelot is designed to work with ASP.NET Core and it targets net6.0, net7.0 and net8.0 frameworks. 4

Install Ocelot package and its dependencies using NuGet Package Manager:

Install-Package Ocelot

Or via the .NET CLI:

dotnet add package Ocelot

All versions can be found on nuget.

Documentation

  • Ocelot documentation — Read the Docs
    This includes lots of information and will be helpful if you want to understand the features Ocelot currently offers.
  • Ocelot RST Docs
    This includes source code of documentation as .rst files which are up to date for current development.
  • Ask Ocelot Guru
    It's a Ocelot-focused AI to answer your questions.

Coming up

You can see what we are working on in backlog.

Contributing

We love to receive contributions from the community, so please keep them coming :octocat:
Pull requests, issues and commentary welcome!

Please complete the relevant template for issues and PRs. Sometimes it's worth getting in touch with us to discuss changes before doing any work in case this is something we are already doing or it might not make sense. We can also give advice on the easiest way to do things :octocat:

Finally, we mark all existing issues as label: help wanted label: small effort label: medium effort label: large effort. 5
If you want to contribute for the first time, we suggest looking at a label: help wanted label: small effort label: good first issue :octocat:

Notes


  1. Ocelot doesnt directly support GraphQL. Developers can easily integrate the GraphQL for .NET library. ↩︎

  2. Ocelot does support Consul, Netflix Eureka, Service Fabric service discovery providers, and special modes like Dynamic Routing and Custom Providers. ↩︎

  3. Retry policies only via Polly library. ↩︎

  4. Starting with v21.0, the solution's code base supports Multitargeting as SDK-style projects. It should be easier for teams to move between (migrate to) .NET 6, 7 and 8 frameworks. Also, new features will be available for all .NET SDKs which we support via multitargeting. Find out more here: Target frameworks in SDK-style projects ↩︎

  5. See all labels of the repository. ↩︎