Skip to content

Instantly share code, notes, and snippets.

@Drvanon
Created April 18, 2020 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Drvanon/73ee2ae33cad34dc963409eda79d5ea4 to your computer and use it in GitHub Desktop.
Save Drvanon/73ee2ae33cad34dc963409eda79d5ea4 to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "gridt/app.py",
"FLASK_ENV": "development",
"FLASK_DEBUG": "0"
},
"args": [
"run",
"--no-debugger",
"--no-reload"
],
"jinja": true,
"cwd": "${workspaceFolder}/web/"
}
]
}
{
"python.pythonPath": "~/.local/share/virtualenvs/web-6kjXm7y2/bin/python",
"python.linting.pylintEnabled": true,
"python.linting.enabled": false,
"python.testing.unittestArgs": [
"-v",
],
"python.testing.pytestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.cwd": "./web"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment