aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-theme-stack/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-03 20:08:36 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-11-03 20:08:36 +0300
commit59c7d4567380d1a9c80e96eb958fdbdd512ce006 (patch)
tree65410cfc10dbc7d060ec23be110662d9b7f6b0e9 /themes/hugo-theme-stack/.devcontainer/devcontainer.json
новая жизнь блога
Diffstat (limited to 'themes/hugo-theme-stack/.devcontainer/devcontainer.json')
-rw-r--r--themes/hugo-theme-stack/.devcontainer/devcontainer.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/themes/hugo-theme-stack/.devcontainer/devcontainer.json b/themes/hugo-theme-stack/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..4bf8a19
--- /dev/null
+++ b/themes/hugo-theme-stack/.devcontainer/devcontainer.json
@@ -0,0 +1,45 @@
+// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
+// https://github.com/microsoft/vscode-dev-containers/tree/v0.202.3/containers/hugo
+{
+ "name": "Hugo (Community)",
+ "build": {
+ "dockerfile": "Dockerfile",
+ "args": {
+ // Update VARIANT to pick hugo variant.
+ // Example variants: hugo, hugo_extended
+ // Rebuild the container if it already exists to update.
+ "VARIANT": "hugo_extended",
+ // Update VERSION to pick a specific hugo version.
+ // Example versions: latest, 0.73.0, 0,71.1
+ // Rebuild the container if it already exists to update.
+ "VERSION": "latest",
+ // Update NODE_VERSION to pick the Node.js version: 12, 14
+ "NODE_VERSION": "14",
+ }
+ },
+
+ // Set *default* container specific settings.json values on container create.
+ "settings": {
+ "html.format.templating": true,
+ },
+
+ // Add the IDs of extensions you want installed when the container is created.
+ "extensions": [
+ "bungcip.better-toml",
+ "davidanson.vscode-markdownlint"
+ ],
+
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
+ "forwardPorts": [
+ 1313
+ ],
+
+ // Use 'postCreateCommand' to run commands after the container is created.
+ // "postCreateCommand": "uname -a",
+
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
+ "remoteUser": "node",
+ "features": {
+ "golang": "latest"
+ }
+}