https://github.com/beanwei/novels-site
用Flask搭建小说网站
https://github.com/beanwei/novels-site
flask python3 web
Last synced: 4 months ago
JSON representation
用Flask搭建小说网站
- Host: GitHub
- URL: https://github.com/beanwei/novels-site
- Owner: BeanWei
- Created: 2018-04-13T08:57:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:31:30.000Z (over 2 years ago)
- Last Synced: 2024-12-28T01:22:49.499Z (6 months ago)
- Topics: flask, python3, web
- Language: Python
- Homepage:
- Size: 805 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Novels-Site
## 用Flask搭建小说网站## 结构
server/
|--app/
|--api_v1_0/ # api目录,对于REST访问返回数据
|--users.py
|--novels.py
|--main/
|--__init__.py #初始化配置
|--forms.py #表单
|--views.py # 路由文件,SPA里,只需要返回"/"根路由
|--static/ # js, css
|--templates/ # SPA里,只需要index.html
|--__init__.py # flask app初始化
|--models.py # model数据库定义
|--config.py # Flask配置
|--manage.py # Flask启动文件,包含命令行