1.先创建项目文件夹(flask-tutorial),再创建项目包目录(flaskr),如下:
F:\flask-tutorial\flaskr
2.在项目包下创建应用工厂(_init_.py)
import os
from flask import Flask
def create_app(test_config=None):
# create and configure the app
app = Flask(__name__, instance_relative_config=True)
app.config.from_mapping(
SECRET_KEY='dev',
DATABASE=os.path.join(app.instance_path, 'flaskr.sqlite'),
)
if test_config is None:
# load the instance config, if it exists, when not testing
app.config.from_pyfile('config.py', silent=True)
else:
# load the test config if passed in
app.config.from_mapping(test_config)
# ensure the instance folder exists
try:
os.makedirs(app.instance_path)
except OSError:
pass
# a simple page that says hello
@app.route('/hello')
def hello():
return 'Hello, World!'
return app
flaskr.sqlite 表示数据库实例的名称
3.dos窗口运行项目
在项目文件夹F:\flask-tutorial目录下运行
set FLASK_APP=flaskr
set FLASK_ENV=development
flask run
4.测试访问
http://127.0.0.1:5000/hello
页面显示Hello, World!,表示项目运行正常。
网友评论