mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
2e81a304d1
* Working on devcontainer with postgresql * Fix for docker-compose.yml * Update postCreateCommand * Tweak docker compose file * Fix Dockerfile - Do not use uv (breaks process) * Update postCreateCommand.sh - Skip database backup * Tweak file * Further improvements - Remove 'devcontainer' Dockerfile target - Fix postCreateCommand * Further cleanup * Reduce SQL errors - Use filter().exists() rather than get() * Set default SITE_URL * Docs updates * Fix hard-coded django version * Update faq.md * Typo fix: PluginObject -> PluginConfig * Docs: strict mode * docs: fix link * docs: fix typo * Fix error message * Revert change to config_template default
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
|
|
// the problemMatchers should prevent vscode from asking how it should check the output
|
|
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "worker",
|
|
"type": "shell",
|
|
"command": "inv worker",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "clean-settings",
|
|
"type": "shell",
|
|
"command": "inv clean-settings",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "delete-data",
|
|
"type": "shell",
|
|
"command": "inv delete-data",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "migrate",
|
|
"type": "shell",
|
|
"command": "inv migrate",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "server",
|
|
"type": "shell",
|
|
"command": "inv server",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "setup-dev",
|
|
"type": "shell",
|
|
"command": "inv setup-dev",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "setup-test",
|
|
"type": "shell",
|
|
"command": "inv setup-test -i --path dev/inventree-demo-dataset",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "superuser",
|
|
"type": "shell",
|
|
"command": "inv superuser",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "test",
|
|
"type": "shell",
|
|
"command": "inv test",
|
|
"problemMatcher": [],
|
|
},
|
|
{
|
|
"label": "update",
|
|
"type": "shell",
|
|
"command": "inv update",
|
|
"problemMatcher": [],
|
|
},
|
|
]
|
|
}
|