GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
git clone https://github.com/mizhexiaoxiao/vue-fastapi-admin.git cd vue-fastapi-admin docker build --no-cache . -t vue-fastapi-admin 启动容器 docker run -d --restart=always --name=vue-fastapi-admin -p 9999:80 vue-fastapi-admin 访问 http://localhost:9999 username:admin password:123456...
git clone https://github.com/mizhexiaoxiao/vue-fastapi-admin.git cd vue-fastapi-admin docker build --no-cache . -t vue-fastapi-admin 启动容器 docker run -d --restart=always --name=vue-fastapi-admin -p 9999:80 vue-fastapi-admin 访问 http://localhost:9999 username:admin password:1234...
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...
Issues: mizhexiaoxiao/vue-fastapi-adminLabels 9 Milestones 0 New issue 0 Open 15 Closed Author Label Projects Milestones Assignee Sort There aren’t any open issues. You could search all of GitHub or try an advanced search.ProTip! Follow long discussions with comments:>50. ...
vue-admin-template和FastAPI前后端分离的小例子。 A small example with vue-admin-template & FastAPI - fanqie03/vue-admin-fastapi-example
git clone https://github.com/mizhexiaoxiao/vue-fastapi-admin.git cd vue-fastapi-admin docker build --no-cache . -t vue-fastapi-admin Start the Container docker run -d --restart=always --name=vue-fastapi-admin -p 9999:80 vue-fastapi-admin Access the Service http://localhost:9999 us...
同步操作将从mizhexiaoxiao/vue-fastapi-admin强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!! 确定后同步将在后台操作,完成时将刷新页面,请耐心等待。 删除在远程仓库中不存在的分支和标签 同步Wiki(当前仓库的 wiki 将会被覆盖!) ...
vue-element-admin-fastapi. Contribute to heyfavour/vue-element-admin-fastapi development by creating an account on GitHub.
@@ -190,6 +225,10 @@ def create_table(): 190 225 tags=['user'], 191 226 # dependencies=[Depends(get_token_header)], # 可以让每个api都会需要经过这个检查 192 227 ) 228 + table_router = APIRouter( 229 + prefix='/table', 230 + tags=['table'], 231 + ) 193 232 ...