Skip to content

Instantly share code, notes, and snippets.

@zerodivide1
Created December 30, 2013 19:39
Show Gist options
  • Save zerodivide1/8186977 to your computer and use it in GitHub Desktop.
Save zerodivide1/8186977 to your computer and use it in GitHub Desktop.
Setup httpbin on bare Ubuntu VM (13.10)
1) Install dependency packages:
$ sudo apt-get install -y screen git wget curl build-essential python-setuptools ruby-ronn
$ screen
$ sudo gem install foreman
2) Clone httpbin project locally:
$ git clone https://github.com/kennethreitz/httpbin.git
3) Install httpbin dependencies:
$ cd httpbin
$ sudo easy_install $(xargs --arg-file=requirements.txt)
4) Run:
$ make run
5) Navigate to http://xxx.xxx.xxx.xxx:5000.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment