From 28b3bce915b108975777669359e586841d735a89 Mon Sep 17 00:00:00 2001 From: Fabio Cardoso Date: Tue, 21 May 2024 20:01:44 +0100 Subject: [PATCH] Mudar port para 80 em vez de 8000 --- application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application.py b/application.py index 926cc04..06b2f42 100644 --- a/application.py +++ b/application.py @@ -24,4 +24,4 @@ def add_nota(): def nova_nota(): return render_template('nota.html') -app.run(host="0.0.0.0", port=8000) \ No newline at end of file +app.run(host="0.0.0.0", port=80) \ No newline at end of file