This commit is contained in:
Eric Romano
2013-04-23 15:28:50 -04:00
commit 3275a2ac96
2 changed files with 76 additions and 0 deletions

15
gitfiti_web.py Normal file
View File

@ -0,0 +1,15 @@
#!/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()