vscode
"""
from flask import Flask
app = Flask(name)
@app.route('/')
def hello_world():
return "Hello World! This is Flask app."
"""
↑のようにきじゅつしています。
windows10のコマンドプロンプトでFlaskを使おうとしたら以下のように出たのですが、
Serving Flask app "app.py"
- Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
- Debug mode: off
Running on http......のようにならないのですがどうしたらようですか?
回答1件
あなたの回答
tips
プレビュー