server.py 501 B

12345678910111213141516171819202122232425262728
  1. from flask import render_template
  2. from lakesuperior.app import create_app
  3. from lakesuperior.config_parser import config
  4. fcrepo = create_app(config['application'], config['logging'])
  5. ## GENERIC ROUTES ##
  6. @fcrepo.route('/', methods=['GET'])
  7. def index():
  8. '''
  9. Homepage.
  10. '''
  11. return render_template('index.html')
  12. @fcrepo.route('/debug', methods=['GET'])
  13. def debug():
  14. '''
  15. Debug page.
  16. '''
  17. raise RuntimeError()
  18. if __name__ == "__main__":
  19. fcrepo.run(host='0.0.0.0')