- Added Jinja2 templating to index.html for dynamic opengraph, tags, titles, and descriptions for bots via flask's render_template - Added index_tags.py to config folder for easily edited information for the update above - Added helmet to react to dynamically change the title of the tab for dynamic tabs even after a static index.html has been served by flask's render template
23 lines
642 B
Python
23 lines
642 B
Python
from custom_functions.prechecks.python_checks import run_python_checks
|
|
run_python_checks()
|
|
from custom_functions.prechecks.precheck import run_precheck
|
|
run_precheck()
|
|
from flask import Flask
|
|
from flask_cors import CORS
|
|
from routes.react import react_bp
|
|
from routes.api import api_bp
|
|
from routes.remote_device_wv import remotecdm_wv_bp
|
|
from routes.remote_device_pr import remotecdm_pr_bp
|
|
|
|
app = Flask(__name__)
|
|
|
|
CORS(app)
|
|
|
|
# Register the blueprint
|
|
app.register_blueprint(react_bp)
|
|
app.register_blueprint(api_bp)
|
|
app.register_blueprint(remotecdm_wv_bp)
|
|
app.register_blueprint(remotecdm_pr_bp)
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True) |