updated resume
This commit is contained in:
14
.vscode/launch.json
vendored
14
.vscode/launch.json
vendored
@@ -1,16 +1,12 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
|
||||
{
|
||||
"type": "dockerfile",
|
||||
"request": "launch",
|
||||
"name": "Docker: Build",
|
||||
"dockerfile": "Dockerfile",
|
||||
"contextPath": "${workspaceFolder}"
|
||||
"name": "Docker: Attach to Node",
|
||||
"type": "docker",
|
||||
"request": "attach",
|
||||
"platform": "node",
|
||||
"containerName": "eleventy"
|
||||
}
|
||||
]
|
||||
}
|
17
.vscode/tasks.json
vendored
Normal file
17
.vscode/tasks.json
vendored
Normal 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": []
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user