Add a rule for the base repository route too to serve the index page.
This commit is contained in:
parent
053ae056ce
commit
449c0b0d46
1 changed files with 5 additions and 0 deletions
|
@ -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')
|
||||||
|
|
Reference in a new issue