achievements tracking
This commit is contained in:
6
.vscode/launch.json
vendored
6
.vscode/launch.json
vendored
@@ -12,7 +12,8 @@
|
||||
"args": [
|
||||
"test",
|
||||
],
|
||||
"django": true
|
||||
"django": true,
|
||||
"preLaunchTask": "Migrate"
|
||||
},
|
||||
{
|
||||
"name": "Run Server",
|
||||
@@ -23,7 +24,8 @@
|
||||
"runserver",
|
||||
"--noreload"
|
||||
],
|
||||
"django": true
|
||||
"django": true,
|
||||
"preLaunchTask": "Migrate"
|
||||
}
|
||||
]
|
||||
}
|
||||
24
.vscode/tasks.json
vendored
Normal file
24
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Collect Static",
|
||||
"command": "venv/bin/python manage.py collectstatic --no-input",
|
||||
"type": "shell",
|
||||
"presentation": {
|
||||
"reveal": "always"
|
||||
},
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"dependsOn": "Collect Static",
|
||||
"label": "Migrate",
|
||||
"command": "venv/bin/python manage.py migrate",
|
||||
"type": "shell",
|
||||
"presentation": {
|
||||
"reveal": "always"
|
||||
},
|
||||
"group": "build"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user