Skip to content

Latest commit

 

History

History
72 lines (46 loc) · 2.93 KB

README.md

File metadata and controls

72 lines (46 loc) · 2.93 KB

PokeGraphQL.Net

All the Pokémon data you'll ever need in one place, easily accessible through a modern GraphQL API.

The GraphQL API is possible thanks to the awesome HotChocolate project.

The RESTful API provided by the awesome PokeAPI project is consumed through the PokeApiNet project.

Deploy

Docker

The application is dockerized. To build and run the image execute the following in the solution folder:

docker build -t <image_name>
docker run -d -p 8080:80 --name <container_name> <image_name>

After that the application should be reachable at http://localhost:8080

Cloud deployment

There are a couple of requirements in the case that the application runs behind a proxy or load balancer as explained in the .net core docs.

In concrete, the following env. variables are relevant:

  • (Required) ASPNETCORE_FORWARDEDHEADERS_ENABLED=true: Turns the forward-header-middleware on. Needed to forward the scheme for Linux and non-IIS reverse proxies.

  • (Optional) ASPNETCORE_WEBHOST=<application_domain>: If the forward-header-middleware is active, it improves the security of the pipeline by restricting the possible values of the X-Forwarded-Host header.

  • (Optional) ASPNETCORE_HSTS_ENABLED)=true: Turns the HSTS-middleware on. The middleware options are set to the minimal requirements described in https://hstspreload.org/

Heroku

For the following sections its recommended to install the heroku cli in your local machine. Most of this steps can be performed through the heroku dashboard, but for the sake of simplicity the CLI is prefered.

First, you will need to login into heroku:

heroku login

After loging in create a new app by running:

heroku create --name <heroku_app>

After the application is created, you need to set some config vars and add a buildpack compatible with dotnetcore.

The buildpack used in this deployment can be found here. You can add it as follows:

heroku buildpacks:set jincod/dotnetcore -a <heroku_app>

Through the use of config vars we will set some of the env. variables mentioned in the cloud deployment section. This can be done as follows:

heroku config:set ASPNETCORE_FORWARDEDHEADERS_ENABLED=true -a <heroku_app>
heroku config:set ASPNETCORE_HSTS_ENABLED=true -a <heroku_app>