Public Access
1
0

updated resume

This commit is contained in:
2025-08-10 22:21:27 -04:00
parent 91443479ff
commit f176f4ca2d
6 changed files with 25 additions and 12 deletions

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

@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "docker-build",
"type": "shell",
"command": "docker build -t eleventy .",
"problemMatcher": []
},
{
"label": "docker-run",
"type": "shell",
"command": "docker run -d --name eleventy -p 8080:8080 eleventy",
"problemMatcher": []
}
]
}