add launch json for theia
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -6,7 +6,6 @@ fet2020/.env/*
|
|||||||
*.sqlite3
|
*.sqlite3
|
||||||
fet2020/*/migrations/*
|
fet2020/*/migrations/*
|
||||||
.theia/*
|
.theia/*
|
||||||
fet2020/.theia/*
|
|
||||||
.flake8
|
.flake8
|
||||||
migrate
|
migrate
|
||||||
run
|
run
|
||||||
|
|||||||
19
fet2020/.theia/launch.json
Normal file
19
fet2020/.theia/launch.json
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
8
fet2020/.theia/settings.json
Normal file
8
fet2020/.theia/settings.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"python.testing.pytestArgs": [
|
||||||
|
"tests"
|
||||||
|
],
|
||||||
|
"python.testing.unittestEnabled": false,
|
||||||
|
"python.testing.nosetestsEnabled": false,
|
||||||
|
"python.testing.pytestEnabled": true
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user