chore: remove .idea and .vscode from root path (#7437)

This commit is contained in:
Yeuoly 2024-08-20 15:37:29 +08:00 committed by GitHub
parent 2e9084f369
commit 0d4753785f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 5 deletions

1
.gitignore vendored
View File

@ -178,3 +178,4 @@ pyrightconfig.json
api/.vscode api/.vscode
.idea/ .idea/
.vscode

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

View File

@ -5,8 +5,8 @@
"name": "Python: Flask", "name": "Python: Flask",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"python": "${workspaceFolder}/api/.venv/bin/python", "python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}/api", "cwd": "${workspaceFolder}",
"envFile": ".env", "envFile": ".env",
"module": "flask", "module": "flask",
"justMyCode": true, "justMyCode": true,
@ -18,15 +18,15 @@
"args": [ "args": [
"run", "run",
"--host=0.0.0.0", "--host=0.0.0.0",
"--port=5001", "--port=5001"
] ]
}, },
{ {
"name": "Python: Celery", "name": "Python: Celery",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"python": "${workspaceFolder}/api/.venv/bin/python", "python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}/api", "cwd": "${workspaceFolder}",
"module": "celery", "module": "celery",
"justMyCode": true, "justMyCode": true,
"envFile": ".env", "envFile": ".env",