specter-desktop/.vscode/launch.json
Manolis Mandrapilias 053de5d440
Chore: Little changes to vscode debugger (#2232)
* change path and comment out folder

* remove path variable
2023-02-21 14:15:53 +01:00

28 lines
No EOL
930 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://code.visualstudio.com/docs/editor/debugging#_launch-configurations
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "cryptoadvance.specter.server:create_and_init()",
"FLASK_ENV": "development",
// "SPECTER_DATA_FOLDER": "~/.specter_empty",
"SPECTER_CONFIG": "DevelopmentConfig",
"FLASK_DEBUG": "1",
},
"args": [
"run",
"--no-debugger",
"--no-reload",
"--port=25441"
],
"jinja": true
}
]
}