Refactor project structure and update configurations

- Renamed and deleted several Python modules
- Added new SQL and database scripts
- Updated `.vscode` and `requirements.txt` configurations
This commit is contained in:
2025-08-27 08:33:51 -05:00
parent 2a521e9016
commit 7ea5fd15df
31 changed files with 502 additions and 798 deletions

31
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Truncate Database Tables",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/python", // Use this for macOS/Linux
"args": [
"${workspaceFolder}/src/scripts/truncate_tables.py"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Clear Database",
"type": "shell",
"command": "${workspaceFolder}/.venv/bin/python", // Use this for macOS/Linux
"args": [
"${workspaceFolder}/src/scripts/clear_database.py"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}