-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [x] update readme - [x] delete old toml config - [x] delete dockerfile Signed-off-by: jmeridth <[email protected]>
- Loading branch information
Showing
8 changed files
with
12,307 additions
and
48 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
{ | ||
"name": "blog-hugo", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
"VARIANT": "hugo_extended", | ||
"VERSION": "latest", | ||
"NODE_VERSION": "20" | ||
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:22", | ||
"features": { | ||
"ghcr.io/devcontainers/features/hugo:1": { | ||
"version": "latest", | ||
"extended": true | ||
} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"html.format.templating": true | ||
}, | ||
"extensions": ["bungcip.better-toml", "davidanson.vscode-markdownlint"] | ||
"extensions": ["tamasfe.even-better-toml", "davidanson.vscode-markdownlint"] | ||
} | ||
}, | ||
"forwardPorts": [1313], | ||
"postCreateCommand": "hugo version", | ||
"postCreateCommand": "hugo serve", | ||
"remoteUser": "node" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ author = "JM (Jason Meridth)" | |
description = "I am a continuously learning software developer trying to not let best be the enemy of better." | ||
keywords = "jason meridth,meridth,jm,software developer" | ||
info = ["Continuously Learning Software Developer"] | ||
avatarURL = "images/jm.jpg" | ||
#avatarURL = "images/jm.jpg" | ||
#gravatar = "[email protected]" | ||
dateFormat = "January 2, 2006" | ||
since = 2007 | ||
|
Oops, something went wrong.