This commit is contained in:
2026-07-13 12:30:05 +08:00
parent 7d61aadc5d
commit f25e128299
2023 changed files with 9042 additions and 922 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"recommendations": [
"editorconfig.editorconfig",
"mhutchie.git-graph",
"golang.go",
"koda.koda",
"0x10.mkdocs-material-preview",
"redhat.vscode-yaml",
"takumii.markdowntable",
"tamasfe.even-better-toml"
]
}
+5
View File
@@ -0,0 +1,5 @@
{
"files.associations": {
"*.md": "python-markdown"
}
}
+22
View File
@@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Живой предпросмотр (localhost:8000)",
"type": "shell",
"command": "make live"
},
{
"label": "Собрать статический сайт (./site)",
"type": "shell",
"command": "make site"
},
{
"label": "Собрать docker-образ со стат. сайтом",
"type": "shell",
"command": "make image"
}
]
}