feat: initial commit
Some checks failed
Build and publish docker image / build-site (push) Successful in 2m23s
Build and publish docker image / build-docker (push) Failing after 1m0s

This commit is contained in:
Radu C. Martin 2025-04-04 21:36:39 +02:00
commit 02a5993d1c
27 changed files with 836 additions and 0 deletions

26
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Jekyll Server",
"type": "shell",
"command": "./tools/run.sh",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Runs the Jekyll server with live reload."
},
{
"label": "Build Jekyll Site",
"type": "shell",
"command": "./tools/test.sh",
"group": {
"kind": "build"
},
"problemMatcher": [],
"detail": "Build the Jekyll site for production."
}
]
}