美文网首页
学习Flask006:Flaskr项目-初始搭建

学习Flask006:Flaskr项目-初始搭建

作者: 我的小小笔尖 | 来源:发表于2022-04-16 19:39 被阅读0次
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!,表示项目运行正常。

相关文章

网友评论

      本文标题:学习Flask006:Flaskr项目-初始搭建

      本文链接:https://www.haomeiwen.com/subject/uhphertx.html