Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
Created January 18, 2012 01:52
Show Gist options
  • Save ryandotsmith/1630298 to your computer and use it in GitHub Desktop.
Save ryandotsmith/1630298 to your computer and use it in GitHub Desktop.
Build and serve beanstalkd from a dyno
#!/usr/bin/env sh
curl -lo beanstalkd.tar.gz "http://cloud.github.com/downloads/kr/beanstalkd/beanstalkd-1.4.6.tar.gz"
tar xvzf beanstalkd.tar.gz
cd beanstalkd-1.4.6/
./configure
make
python -m SimpleHTTPServer $PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment