# sunFast **Repository Path**: SunShineGo/sun-fast ## Basic Information - **Project Name**: sunFast - **Description**: 基于FastAPI封装了个自用框架 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-14 - **Last Updated**: 2023-12-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### SunFast > 基于FastAPI封装的web框架 #### 1.安装 ```shell python manage.py install ``` ### 2.目录结构 ``` . ├── README.md ├── apps # 业务逻辑 │   ├── user # 模块 │   │   ├── __init__.py │   │   ├── models.py # 数据库模型 │   │   └── views.py # 业务逻辑 │   ├── __init__.py │   └── main.py # 程序主入口 ├── bin # 可执行文件 │   ├── build # 打包脚本 │   │   ├── Dockerfile # docker打包 │   │   └── requirements.txt # 依赖包 │   ├── dataBase # 数据库相关 │   │   └── main.py │   ├── help # 帮助文件 │   │   └── help.py │   └── run # 运行脚本 │   └── run.py ├── config │   └── main.py # 配置文件 ├── logs # 日志文件 │   ├── app.log │   └── logger.py ├── models │   ├── user.py # 用户模块的模型 │   └── db-models.py # 从已有数据库导入的模型 └── manage.py # 程序入口 ``` > 注意,需要配置好数据库,并且删除apps里面的模块还有models里面的模块再运行 > 否则可能会运行失败