add launch json for theia

This commit is contained in:
2021-01-06 18:23:28 +00:00
parent 64a1ac782d
commit 004a7c9533
3 changed files with 27 additions and 1 deletions

1
.gitignore vendored
View File

@@ -6,7 +6,6 @@ fet2020/.env/*
*.sqlite3
fet2020/*/migrations/*
.theia/*
fet2020/.theia/*
.flake8
migrate
run

View File

@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "manage.py",
"console": "integratedTerminal",
"args": [
"runserver",
"0.0.0.0:8000"
],
"django": true
}
]
}

View File

@@ -0,0 +1,8 @@
{
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
}