diff --git a/src/applets/install/__pycache__/routes.cpython-313.pyc b/src/applets/install/__pycache__/routes.cpython-313.pyc index 7305ed0..7be89bb 100644 Binary files a/src/applets/install/__pycache__/routes.cpython-313.pyc and b/src/applets/install/__pycache__/routes.cpython-313.pyc differ diff --git a/src/applets/install/routes.py b/src/applets/install/routes.py index 8643459..e7124b0 100644 --- a/src/applets/install/routes.py +++ b/src/applets/install/routes.py @@ -9,6 +9,29 @@ def install_index(): The page you'd get if you access the root of this app in a browser. """ + install_start() return render_template('install.html') +@bp.route('/install-start',methods=['GET', 'POST', 'PUT']) +def install_start(): + """ + Trigger the installation process + """ + print("The installation process is starting!... in theory at least") + + +@bp.route('/install-status',methods=['GET', 'POST', 'PUT']) +def install_status(): + """ + Update on the status of the installation process. + """ + print("installation en coers") + + +@bp.route('/settings',methods=['GET', 'POST', 'PUT']) +def settings(): + """ + Manage settings for the installation module. + """ + print("Settings")