Add development server

This commit is contained in:
Zoey 2021-08-18 13:49:50 -07:00
parent 787eac91c0
commit fdeefbd78a
No known key found for this signature in database
GPG key ID: 2DCAC8EA81672106
11 changed files with 1497 additions and 42 deletions

11
.vscode/tasks.json vendored
View file

@ -3,13 +3,20 @@
"tasks": [
{
"type": "cargo",
"command": "run",
"command": "watch",
"args": ["-x", "run -- serve"],
"problemMatcher": ["$rustc"],
"label": "rust: cargo run",
"label": "dev serve site",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"label": "build site"
}
]
}