Created
December 30, 2013 19:39
-
-
Save zerodivide1/8186977 to your computer and use it in GitHub Desktop.
Setup httpbin on bare Ubuntu VM (13.10)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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