achievements tracking

This commit is contained in:
ducoterra
2020-04-26 20:51:56 -04:00
parent 0cb3896e4b
commit 43c48d5216
9 changed files with 177 additions and 77 deletions

6
.vscode/launch.json vendored
View File

@@ -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
View 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"
}
]
}