Skip to content

Commit

Permalink
chore: remove .idea and .vscode from root path (#7437)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeuoly authored Aug 20, 2024
1 parent 2e9084f commit 0d47537
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ pyrightconfig.json
api/.vscode

.idea/
.vscode
File renamed without changes
File renamed without changes.
10 changes: 5 additions & 5 deletions .vscode/launch.json → api/.vscode/launch.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"name": "Python: Flask",
"type": "debugpy",
"request": "launch",
"python": "${workspaceFolder}/api/.venv/bin/python",
"cwd": "${workspaceFolder}/api",
"python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}",
"envFile": ".env",
"module": "flask",
"justMyCode": true,
Expand All @@ -18,15 +18,15 @@
"args": [
"run",
"--host=0.0.0.0",
"--port=5001",
"--port=5001"
]
},
{
"name": "Python: Celery",
"type": "debugpy",
"request": "launch",
"python": "${workspaceFolder}/api/.venv/bin/python",
"cwd": "${workspaceFolder}/api",
"python": "${workspaceFolder}/.venv/bin/python",
"cwd": "${workspaceFolder}",
"module": "celery",
"justMyCode": true,
"envFile": ".env",
Expand Down

0 comments on commit 0d47537

Please sign in to comment.