18 Flask mega-tutorial 第18章 在Heroku上部署 Deployment on Heroku

如需转载请注明出处。
win10 64位、Python 3.6.3、Notepad++、Chrome 67.0.3396.99(正式版本)(64 位)
注:作者编写时间2018-03-07,linux、python 3.5.2

以下内容均是加入自己的理解与增删,以记录学习过程。不限于翻译,部分不完全照搬作者Miguel Grinberg的博客,版权属于作者,感谢他提供免费学习的资料。

未完待续




目前为止,项目结构:

microblog/
    app/
        auth/
        errors/
        main/
        static/
        templates/
            auth/
            email/
            _post.html
            base.html
            edit_profile.html
            index.html
            user.html
        __init__.py
        cli.py
        email.py
        models.py
        translate.py
    logs/
    migrations/
    env/
    app.db
    babel.cfg
    config.py
    microblgo.env
    microblog.py
    requirements.txt
    tests.py

参考:
作者博客
源代码

如需转载请注明出处。

猜你喜欢

转载自blog.csdn.net/weixin_38256474/article/details/82185153