tasks.json 222 B

1234567891011121314
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Run Flask App",
  6. "type": "shell",
  7. "command": "./venv/bin/python app.py",
  8. "args": [],
  9. "isBackground": true,
  10. "problemMatcher": [],
  11. "group": "none"
  12. }
  13. ]
  14. }