https://github.com/relph1119/flask-web-learning
Flask Web开发实战,个人笔记在线阅读地址:https://relph1119.github.io/flask-web-learning
https://github.com/relph1119/flask-web-learning
Last synced: 2 months ago
JSON representation
Flask Web开发实战,个人笔记在线阅读地址:https://relph1119.github.io/flask-web-learning
- Host: GitHub
- URL: https://github.com/relph1119/flask-web-learning
- Owner: Relph1119
- Created: 2022-08-29T07:21:29.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-05T03:00:45.000Z (almost 4 years ago)
- Last Synced: 2025-12-26T15:08:34.161Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.47 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 《Flask Web开发实战》学习
《Flask Web开发实战》这本书从开发环境的搭建、项目的建立到程序的编写,再到自动化测试、性能优化,最后介绍生产环境的搭建和部署上线,详细讲解完整的Flask Web程序开发流程,用5个综合性案例将不同难度层级的知识点串联起来。本书主要分为三个部分,分别是基础篇、实战篇和进阶篇。本书的作者已经计划在2022年底完成第2版的撰写,期待第2版的出版。
原书项目链接地址:https://github.com/greyli/helloflask
## 在线阅读地址
个人笔记在线阅读地址:https://relph1119.github.io/flask-web-learning
## 环境安装
### Python版本
Python 3.7.9 Windows环境
### 安装相关的依赖包
```shell
pip install -r requirements.txt
```
### 本地启动docsify
```shell
docsify serve ./docs
```
## 注意事项
1. 运行`ch07`下的`sayhello`,需要先设置`ch07`文件夹为`Sources Root`,避免代码导包的报错
2. 运行`ch08`下的`bluelog`,需要先设置`ch08`文件夹为`Sources Root`,避免代码导包的报错
3. 运行`ch09`下的`albumy`,需要先设置`ch09`文件夹为`Sources Root`,避免代码导包的报错
4. 运行`ch10`下的`todoism`,需要先设置`ch10`文件夹为`Sources Root`,避免代码导包的报错
4. 运行`ch11`下的`catchat`,需要先设置`ch11`文件夹为`Sources Root`,避免代码导包的报错