相关截图(文末还有)
$ git clone https://github.com/rmboot/approvalsystem
$ cd approvalsystem
$ pipenv install
$ pipenv shell
$ python manage.py db init
$ python manage.py db migrate
$ python manage.py db upgrade
在数据库控制台执行init.sql的SQL语句
1.取消user.py文件视图函数index的注释,执行
$ flask run
* Running on http://127.0.0.1:5000/
2.访问 http://127.0.0.1:5000/ 会生成相应用户,并打印提示信息
$ flask run
* Running on http://127.0.0.1:5000/
Pipenv 下载速度太慢可以选择指定源
$ pipenv install --pypi-mirror https://pypi.tuna.tsinghua.edu.cn/simple
或者去看一下Pipenv借助系统环境变量设置国内源
This project is licensed under the MIT License (see theLICENSE file for details).