pkmntrade.club/.vscode/tasks.json
badbl0cks 0d19f0f060 Update Docker commands in tasks.json and entrypoint.sh for improved service management
- Modified Docker commands in `.vscode/tasks.json` to remove the `-d` flag for running services, allowing for better visibility of logs during development.
- Adjusted `entrypoint.sh` to streamline the startup process by running the development server and npm concurrently, enhancing the development workflow.
2025-04-29 14:01:46 -07:00

35 lines
No EOL
883 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Reset DB, Make Migrations, And Seed Data",
"type": "shell",
"command": "./scripts/reset-db_make-migrations_seed-data.sh",
"problemMatcher": []
},
{
"label": "Run app & db (db in docker)",
"type": "shell",
"command": "./scripts/entrypoint.sh",
"problemMatcher": []
},
{
"label": "Run app & db (both in Docker)",
"type": "shell",
"command": "docker compose -f docker-compose_entire_app.yml up",
"problemMatcher": []
},
{
"label": "Run tailwind dev server",
"type": "shell",
"command": "cd theme/static_src && npm run dev",
"problemMatcher": [],
},
{
"label": "Run db",
"type": "shell",
"command": "docker compose -f docker-compose_db_only.yml up",
"problemMatcher": []
}
]
}