29 lines
786 B
JSON
29 lines
786 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "运行",
|
|
"type": "shell",
|
|
"command": "uvicorn app.main:app --host 0.0.0.0 --reload",
|
|
"problemMatcher": [],
|
|
"options": {
|
|
"env": {
|
|
"TYPE": "client"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "运行管理端",
|
|
"type": "shell",
|
|
"command": "uvicorn app.main_admin:app --host 0.0.0.0 --reload",
|
|
"problemMatcher": [],
|
|
"options": {
|
|
"env": {
|
|
"TYPE": "admin"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |