Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.11 KB

README.md

File metadata and controls

49 lines (30 loc) · 1.11 KB

A Runscope community project.

Originally Created by Jeff Lindsay

License

MIT

Looking to self-host?

Deploy your own instance using Heroku

Create a Heroku account if you haven't, then grab the RequestBin source using git:

$ git clone git://github.com/Runscope/requestbin.git

From the project directory, create a Heroku application:

$ heroku create

Add Heroku's addon for redistogo

$ heroku addons:add redistogo:nano --app {app_name}

Find your redistogo connection details

$ heroku config --app {app_name} | grep REDISTOGO_URL

Open requestbin/config.py and locate variables REDIS_URL and REDIS_PORT. Edit them with the connection details you got in the previous step:

REDIS_URL = "REDISTOGO_URL"
REDIS_HOST = "localhost"
REDIS_PORT = REDISTOGO_PORT

Now just deploy via git:

$ git push heroku master

It will push to Heroku and give you a URL that your own private RequestBin will be running.

Contributors