feat: initial commit
Some checks failed
Build and publish docker image / Build Jekyll Site (push) Successful in 19s
Build and publish docker image / Build Docker Image (push) Failing after 1m49s

This commit is contained in:
Radu C. Martin 2025-04-04 21:36:39 +02:00
commit 139c58135c
27 changed files with 848 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."
}
]
}