chore: update GitHub Codespace config (#27)
This commit is contained in:
parent
1d50fa8dae
commit
7f5d5ac7ac
@ -1,6 +1,6 @@
|
|||||||
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 10, 12, 14
|
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 18, 16, 14
|
||||||
ARG NODE_VERSION=14
|
ARG NODE_VERSION=16
|
||||||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION}
|
FROM mcr.microsoft.com/devcontainers/javascript-node:${NODE_VERSION}
|
||||||
|
|
||||||
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version.
|
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version.
|
||||||
ARG VARIANT=hugo
|
ARG VARIANT=hugo
|
||||||
@ -15,7 +15,14 @@ RUN apt-get update && apt-get install -y ca-certificates openssl git curl && \
|
|||||||
export VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}') ;;\
|
export VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}') ;;\
|
||||||
esac && \
|
esac && \
|
||||||
echo ${VERSION} && \
|
echo ${VERSION} && \
|
||||||
wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-64bit.tar.gz && \
|
case $(uname -m) in \
|
||||||
|
aarch64) \
|
||||||
|
export ARCH=ARM64 ;; \
|
||||||
|
*) \
|
||||||
|
export ARCH=64bit ;; \
|
||||||
|
esac && \
|
||||||
|
echo ${ARCH} && \
|
||||||
|
wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-${ARCH}.tar.gz && \
|
||||||
tar xf ${VERSION}.tar.gz && \
|
tar xf ${VERSION}.tar.gz && \
|
||||||
mv hugo /usr/bin/hugo
|
mv hugo /usr/bin/hugo
|
||||||
|
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
// 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)",
|
"name": "Hugo (Community)",
|
||||||
"build": {
|
"build": {
|
||||||
@ -14,20 +12,26 @@
|
|||||||
// Rebuild the container if it already exists to update.
|
// Rebuild the container if it already exists to update.
|
||||||
"VERSION": "latest",
|
"VERSION": "latest",
|
||||||
// Update NODE_VERSION to pick the Node.js version: 12, 14
|
// Update NODE_VERSION to pick the Node.js version: 12, 14
|
||||||
"NODE_VERSION": "14",
|
"NODE_VERSION": "14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Set *default* container specific settings.json values on container create.
|
// Configure tool-specific properties.
|
||||||
"settings": {
|
"customizations": {
|
||||||
"html.format.templating": true,
|
// Configure properties specific to VS Code.
|
||||||
},
|
"vscode": {
|
||||||
|
// 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.
|
// Add the IDs of extensions you want installed when the container is created.
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"bungcip.better-toml",
|
"tamasfe.even-better-toml",
|
||||||
"davidanson.vscode-markdownlint"
|
"davidanson.vscode-markdownlint"
|
||||||
],
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
||||||
"forwardPorts": [
|
"forwardPorts": [
|
||||||
@ -37,9 +41,11 @@
|
|||||||
// Use 'postCreateCommand' to run commands after the container is created.
|
// Use 'postCreateCommand' to run commands after the container is created.
|
||||||
// "postCreateCommand": "uname -a",
|
// "postCreateCommand": "uname -a",
|
||||||
|
|
||||||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
||||||
"remoteUser": "node",
|
"remoteUser": "node",
|
||||||
"features": {
|
"features": {
|
||||||
"golang": "1.17.8"
|
"ghcr.io/devcontainers/features/go:1": {
|
||||||
|
"version": "latest"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
@ -17,7 +17,7 @@
|
|||||||
{
|
{
|
||||||
"label": "Build",
|
"label": "Build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "hugo --minify",
|
"command": "hugo",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
Loading…
Reference in New Issue
Block a user