初始化项目

This commit is contained in:
huangge1199 2025-06-25 10:15:57 +08:00
parent e356943186
commit eafc1f5eda
2 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/.venv/
/.idea/

12
app.py Normal file
View File

@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()