add live reload

This commit is contained in:
null 2024-02-18 16:04:29 +01:00
parent d9ae980d0b
commit ed8d6d5d71
2 changed files with 2 additions and 2 deletions

2
app.py
View File

@ -18,5 +18,5 @@ def index():
return render_template('index.html', data={"conditions": conditions}) return render_template('index.html', data={"conditions": conditions})
if __name__ == '__main__': if __name__ == '__main__':
app.run(host='0.0.0.0', port=8080) app.run(host='0.0.0.0', port=8080, debug=True)

View File

@ -4,7 +4,7 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paper-Like Website</title> <title>Trading Zone Website</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}"> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/styles.css') }}">
</head> </head>