Google Cloud Run

To get started in a hosted environment you can deploy this project to the Google Cloud Platform.

From your Google Cloud dashboard create a new project and call it:

moov-fed-demo

Enable the Container Registry API for your project and associate a billing account if needed. Then, open the Cloud Shell terminal and run the following Docker commands, substituting your unique project ID:

docker pull moov/fed
docker tag moov/fed gcr.io/<PROJECT-ID>/fed
docker push gcr.io/<PROJECT-ID>/fed

Deploy the container to Cloud Run:

gcloud run deploy --image gcr.io/<PROJECT-ID>/fed --port 8086

Select your target platform to 1, service name to fed, and region to the one closest to you (enable Google API service if a prompt appears). Upon a successful build you will be given a URL where the API has been deployed:

https://YOUR-FED-APP-URL.a.run.app

Now you can ping the server:

curl https://YOUR-FED-APP-URL.a.run.app/ping

You should get this response:

PONG