From 8edc074d91d90be0ab071553ede5c655298cf737 Mon Sep 17 00:00:00 2001 From: MinChaeeun85 Date: Mon, 12 May 2025 02:59:16 +0900 Subject: [PATCH] Update app.py to return simple HTML response --- app.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index a21bd0e..5623655 100644 --- a/app.py +++ b/app.py @@ -8,7 +8,15 @@ @app.route("/") # 루트 URL에 대한 라우팅 설정 def hello(): - return "Hello, World!" # 브라우저에 출력될 텍스트 + return """ + + Hello + +

Welcome to this page.

+

This file is from the E-COPS GitHub repository.

+ + +""" if __name__ == "__main__": app.run(debug=True) # 개발 서버 실행 (디버그 모드)