diff --git a/README.md b/README.md index ee11df52..dd86f884 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ To get started, take a look the [installation](#installation) steps, [usage](#co - [Docker](#docker) - [Fly.io](#flyio) - [Cloud Foundry](#cloudfoundry) + - [Google Cloud Run](#google-cloud-run) - [Recommended resources](#recommended-resources) - [Production notes](#production-notes) - [Scalability](#scalability) @@ -200,6 +201,12 @@ Start the application cf start imaginary-inst01 ``` +### Google Cloud Run + +Click to deploy on Google Cloud Run: + +[![Run on Google Cloud](https://deploy.cloud.run/button.svg)](https://deploy.cloud.run) + ### Recommended resources Given the multithreaded native nature of Go, in terms of CPUs, most cores means more concurrency and therefore, a better performance can be achieved. diff --git a/app.json b/app.json deleted file mode 100644 index 356453b2..00000000 --- a/app.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "Imaginary", - "description": "Fast HTTP microservice for high-level image processing.", - "keywords": [ - "image", - "processing", - "go", - "microservice", - "api", - "libvips", - "vips" - ], - "repository": "https://github.com/h2non/imaginary", - "logo": "https://camo.githubusercontent.com/bcb3b2bd343c3c85aaf6094e51c6178bbe239a32/687474703a2f2f7331342e706f7374696d672e6f72672f3874683731613230312f696d6167696e6172795f776f726c642e6a7067", - "success_url": "/", - "image": "heroku/go", - "mount_dir": "src/github.com/h2non/imaginary", - "buildpacks": [ - { - "url": "https://github.com/h2non/heroku-buildpack-imaginary.git" - } - ] -}