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-metro2-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/metro2
docker tag moov/metro2 gcr.io/<PROJECT-ID>/metro2
docker push gcr.io/<PROJECT-ID>/metro2
Deploy the container to Cloud Run:
gcloud run deploy --image gcr.io/<PROJECT-ID>/metro2 --port 8080
Select your target platform to 1
, service name to metro2
, 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-METRO2-APP-URL.a.run.app
Now you can complete a health check:
curl https://YOUR-METRO2-APP-URL.a.run.app/health
You should get this response:
{"health":true}