run.py __init__.pyの形をとりあえず作成

This commit is contained in:
2025-06-10 13:08:08 +09:00
parent 43f53fe79b
commit e30a0a6f9b
2 changed files with 15 additions and 0 deletions

6
run.py
View File

@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)