Browse Source

Update Heroku instructions

DarthSim 7 years ago
parent
commit
4a4c330832
1 changed files with 4 additions and 4 deletions
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -102,10 +102,10 @@ However, you can do it manually with a few steps:
 
 ```bash
 $ git clone https://github.com/DarthSim/imgproxy.git && cd imgproxy
-$ heroku git:remote -a your-application
-$ heroku config:set BUILDPACK_URL=https://github.com/DarthSim/heroku-buildpack-imgproxy.git \
-                    IMGPROXY_KEY=$YOUR_KEY \
-                    IMGPROXY_SALT=$YOUR_SALT
+$ heroku create your-application
+$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-apt
+$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-go
+$ heroku config:set IMGPROXY_KEY=$YOUR_KEY IMGPROXY_SALT=$YOUR_SALT
 $ git push heroku master
 ```