reorganizing build scripts

This commit is contained in:
badblocks 2025-04-17 12:21:21 -07:00
parent 633c1e87e8
commit b894b60b65
430 changed files with 136 additions and 53943 deletions

14
.vscode/tasks.json vendored
View file

@ -4,13 +4,19 @@
{
"label": "Reset DB, Make Migrations, And Seed Data",
"type": "shell",
"command": "./reset-db_make-migrations_seed-data.sh",
"command": "./scripts/reset-db_make-migrations_seed-data.sh",
"problemMatcher": []
},
{
"label": "Run app & db",
"label": "Run app & db (db in docker)",
"type": "shell",
"command": "./entrypoint.sh",
"command": "./scripts/entrypoint.sh",
"problemMatcher": []
},
{
"label": "Run app & db (both in Docker)",
"type": "shell",
"command": "docker compose -f docker-compose_entire_app.yml up -d",
"problemMatcher": []
},
{
@ -22,7 +28,7 @@
{
"label": "Run db",
"type": "shell",
"command": "docker compose up -d",
"command": "docker compose -f docker-compose_db_only.yml up -d",
"problemMatcher": []
}
]