Project And Teamorganisation Tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launch.json 607B

1234567891011121314151617
  1. {
  2. // Verwendet IntelliSense zum Ermitteln möglicher Attribute.
  3. // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
  4. // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Python: Main File execution",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${workspaceFolder}/manage.py",
  12. "args": ["runserver"],
  13. "console": "integratedTerminal",
  14. "justMyCode": true
  15. }
  16. ]
  17. }