Skip to content

Instantly share code, notes, and snippets.

@zeekay
Created March 6, 2012 17:55
Show Gist options
  • Save zeekay/1987766 to your computer and use it in GitHub Desktop.
Save zeekay/1987766 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from bottle import get, run, static_file
@get('/<path:path>')
def callback(path):
if not path:
path = 'index.html'
return static_file(path, root='.')
run(host='0.0.0.0', port=8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment