Files
gitfiti/gitfiti_web.py
Eric Romano 3275a2ac96 gitfiti
2013-04-23 15:28:50 -04:00

15 lines
257 B
Python

#!/bin/env python
#gitfiti_web
from bottle import request, route, run, post, template
@route("/")
def index():
return template('index')
@route()
def main():
run(host='localhost', port=8080, debug=True, reloader=True)
if __name__ == '__main__':
main()