diff --git a/assets/config/flask/lomes-app.py b/assets/config/flask/lomes-app.py new file mode 100644 index 0000000..a707da4 --- /dev/null +++ b/assets/config/flask/lomes-app.py @@ -0,0 +1,12 @@ +#!/bin/python3 + +from flask import Flask, render_template + +app = Flask(__name__) + +@app.route("/") +def index(): + return "TEMPLATE" + + +app.run(host="0.0.0.0", port=5000) \ No newline at end of file diff --git a/dev_env_setup.sh b/dev_env_setup.sh index f30be5a..6bea6d3 100755 --- a/dev_env_setup.sh +++ b/dev_env_setup.sh @@ -207,6 +207,7 @@ fi if [ -f "/tmp/LoMeS/honacha" ]; then ### HOST NAME CHANGE !? echo -e "\n ${YEL}During setup you changed this machines host name. For the change to take effect, you should reboot! " + while true; do read -p " Would you like to reboot? (Y/n) --> " reboot echo -e "${CRS}"