diff --git a/app.py b/app.py deleted file mode 100644 index db99a5d..0000000 --- a/app.py +++ /dev/null @@ -1,8 +0,0 @@ -from app import create_app - - -app = create_app() - - -if __name__ == "__main__": - app.run(debug=True) diff --git a/app/static/style.css b/app/static/style.css index c0db413..299a8c2 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -18,6 +18,7 @@ html { min-height: 100%; background: var(--bg); + zoom: 0.8; } body { diff --git a/run.py b/run.py index db99a5d..3013bac 100644 --- a/run.py +++ b/run.py @@ -5,4 +5,4 @@ app = create_app() if __name__ == "__main__": - app.run(debug=True) + app.run(host="0.0.0.0", port=5000, debug=True)