Add a rule for the base repository route too to serve the index page.

This commit is contained in:
yackob03 2013-10-15 21:50:14 -04:00
parent 053ae056ce
commit 449c0b0d46

View file

@ -67,6 +67,11 @@ def signin():
return index('') return index('')
@app.route('/repository/')
def repository():
return index('')
@app.route('/status', methods=['GET']) @app.route('/status', methods=['GET'])
def status(): def status():
return make_response('Healthy') return make_response('Healthy')