Initial commit.

This commit is contained in:
2025-12-10 16:49:59 -08:00
commit 2a2b4a3f83
1366 changed files with 95853 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Hugo Server",
"type": "node-terminal",
"request": "launch",
"command": "hugo server -D",
"cwd": "${workspaceFolder}",
"serverReadyAction": {
"pattern": "Web Server is available at //localhost:(\\d+)",
"uriFormat": "http://localhost:%s",
"action": "openExternally"
}
}
]
}

10
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,10 @@
{
"cSpell.customDictionaries": {
"custom-dictionary-workspace": {
"name": "custom-dictionary-workspace",
"path": "${workspaceFolder:civildynamics.org}/.cspell/custom-dictionary-workspace.txt",
"addWords": true,
"scope": "workspace"
}
}
}