使用fastapi和vue-element-admin构建的管理后台
目前配置直接写在配置文件中,生产环境推荐使用Nacos作为配置中心
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
windows下可能需要安装如下软件:
Micorosoft visio c++
https://go.microsoft.com/fwlink/?LinkId=691126
安装cryptography openssl报错:
下载安装https://slproweb.com/products/Win32OpenSSL.html
将安装后目录的include下的openssl目录复制到python的include目录下
将安装后目录中lib下的libcrypto.lib和libssl.lib复制到python的libs目录下
在安装mysqlclient时会出现报错,解决方法如下:
https://blog.csdn.net/alvechen/article/details/95040255
数据库创建一个fast库,编码格式utf8mb4
数据库更新使用alembic
alembic init alembic
修改alembic的ini文件,将链接地址改为正确的
修改alembic env文件,添加如下内容
import os
import sys
# 把当前项目路径加入到path中
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
from models.base import Base
target_metadata = Base.metadata
注释掉 target_metadata = None
生成执行文件
alembic revision --autogenerate -m "first commit"
alembic upgrade head
python main.py
表结构创建完成后执行目录下的init.sql文件插入初始数据
cd front
npm install --registry=https://registry.npm.taobao.org
npm run dev