Skip to content

Commit

Permalink
docs: add sponsor section
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas Rekkas (arekkas) committed Jun 13, 2017
2 parents 3675cf8 + b5cb0c6 commit 46eddcd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
40 changes: 23 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ community on [Gitter](https://gitter.im/ory-am/hydra). For advanced use cases, c
- [What is ORY Hydra?](#what-is-ory-hydra)
- [ORY Hydra implements open standards](#ory-hydra-implements-open-standards)
- [Sponsors & Adopters](#sponsors-&-adopters)
- [Sponsorship](#sponsorship)
- [Engineer membership](#engineer-membership)
- [Sponsors](#sponsors)
- [Adopters](#adopters)
- [Engineer membership](#engineer-membership)
- [ORY Hydra for Enterprise](#ory-hydra-for-enterprise)
- [Quickstart](#quickstart)
- [5 minutes tutorial: Run your very own OAuth2 environment](#5-minutes-tutorial-run-your-very-own-oauth2-environment)
Expand Down Expand Up @@ -98,9 +99,11 @@ and the OpenID Foundation:

## Sponsors & Adopters

This is a cureated list of Hydra sponsors and adopters. If you want to be on this list, [contact us](mailto:hi@ory.am).
ORY Hydra is open source with a permissive license. We are a dedicated, young but also experienced team of developers
in the area of cloud computing and internet security. Please support our mission for a safer web and become a sponsor, buy an
engineer membership, or [tell us](mailto:hi@ory.am) why and how you are using ORY Hydra.

### Sponsors
### Sponsorship

**[Become a ORY Hydra sponsor now](https://www.patreon.com/bePatron?c=581435&rid=1746199)** and help keep the project
open source, free, and maintained. Additionally, sponsors unlock
Expand All @@ -111,6 +114,21 @@ open source, free, and maintained. Additionally, sponsors unlock

Sponsorship starts at 600$ per month. We accept smaller contributions as well, but without the benefits listed above.

### Engineer membership

**[Get your engineering membership now](https://www.patreon.com/bePatron?c=581435&rid=1746211)** and gain priorization,
and 1-1 support from our talented ORY Hydra engineers. Additionally,

* you get private technical support from ORY Hydra engineers.
* you gain exclusive access to private community.
* you unlock the ability to prioritize bugs.
* you are able to influence the feature roadmap.
* as long as your membership is active, we guarantee maintenance of ORY Hydra.

Engineer membership is 900$ per month.

### Sponsors

<img src="docs/images/sponsors/auth0.png" align="left" width="30%" alt="Auth0.com" />

We are proud to have [Auth0](https://auth0.com) as a **gold sponsor** for ORY Hydra. [Auth0](https://auth0.com) solves
Expand All @@ -121,7 +139,8 @@ every year. At ORY, we use [Auth0](https://auth0.com) in conjunction with ORY Hy

### Adopters

ORY Hydra is battle-tested in production systems. This is a curated list of ORY Hydra adopters.
ORY Hydra is battle-tested in production systems. This is a curated list of ORY Hydra adopters. [Tell us](mailto:hi@ory.am) if
you think that your company should be listed here.

<img src="https://www.arduino.cc/en/uploads/Trademark/ArduinoCommunityLogo.png" align="left" width="30%" alt="arduino.cc"/>

Expand All @@ -130,19 +149,6 @@ for anyone making interactive projects. ORY Hydra secures Arduino's developer pl

<br clear="all"/>

### Engineer membership

**[Get your engineering membership now](https://www.patreon.com/bePatron?c=581435&rid=1746211)** and gain priorization,
and 1-1 support from our talented ORY Hydra engineers. Additionally,

* you get private technical support from ORY Hydra engineers.
* you gain exclusive access to private community.
* you unlock the ability to prioritize bugs.
* you are able to influence the feature roadmap.
* as long as your membership is active, we guarantee maintenance of ORY Hydra.

Engineer membership is 900$ per month.

## ORY Hydra for Enterprise

ORY Hydra is available as an Apache 2.0-licensed Open Source technology. In enterprise environments however,
Expand Down
5 changes: 3 additions & 2 deletions cmd/server/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func RunHost(c *config.Config) func(cmd *cobra.Command, args []string) {
},
})

pkg.Must(graceful.Graceful(func() error {
err := graceful.Graceful(func() error {
var err error
logger.Infof("Setting up http server on %s", c.GetAddress())
if c.ForceHTTP {
Expand All @@ -91,7 +91,8 @@ func RunHost(c *config.Config) func(cmd *cobra.Command, args []string) {
}

return err
}, srv.Shutdown), "Could not gracefully run server")
}, srv.Shutdown)
logger.WithError(err).Fatal("Could not gracefully run server")
}
}

Expand Down

0 comments on commit 46eddcd

Please sign in to comment.