diff --git a/.vscode/launch.json b/.vscode/launch.json index 13b8cbbf188cf07448c5cab1490fb0ed762ec5e2..781960846bc5ab5c8d20aba7cd24c2c7dd9a76da 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,11 +5,19 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: Aura Engine", + "name": "Aura Engine - Run", "type": "python", "request": "launch", "program": "${workspaceFolder}/aura.py", "console": "integratedTerminal" + }, + { + "name": "Aura Engine - Recreate Database", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/aura.py", + "args": ["--recreate-database"], + "console": "integratedTerminal" } ] } \ No newline at end of file