add live reload
This commit is contained in:
parent
d9ae980d0b
commit
ed8d6d5d71
2
app.py
2
app.py
|
|
@ -18,5 +18,5 @@ def index():
|
|||
return render_template('index.html', data={"conditions": conditions})
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=8080)
|
||||
app.run(host='0.0.0.0', port=8080, debug=True)
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<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') }}">
|
||||
</head>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue