reorganizing build scripts
This commit is contained in:
parent
633c1e87e8
commit
b894b60b65
430 changed files with 136 additions and 53943 deletions
14
.vscode/tasks.json
vendored
14
.vscode/tasks.json
vendored
|
|
@ -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": []
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue