main.py 610 B

1234567891011121314151617181920212223242526
  1. from flask import Flask, render_template
  2. from webservice import api, file_io
  3. import os
  4. app = Flask(__name__, template_folder='static')
  5. app.register_blueprint(api.bp, url_prefix='/api')
  6. app.register_blueprint(file_io.bp)
  7. @app.route('/')
  8. @app.route('/static/login')
  9. @app.route('/static/select')
  10. def home():
  11. return render_template('index.html')
  12. @app.route('/static/planner/<year>/<version>/<timestamp>')
  13. def planner(year, version, timestamp):
  14. return render_template('index.html')
  15. if __name__ == '__main__':
  16. app.secret_key = os.urandom(24)
  17. app.run(host='0.0.0.0', port='8084', debug=True)