Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CaiJimmy/hugo-theme-stack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimmy Cai <github@jimmycai.com>2021-10-23 09:51:56 +0300
committerGitHub <noreply@github.com>2021-10-23 09:51:56 +0300
commita822411a030663c8acaf399c349b7462da467d92 (patch)
tree77e7b4e7e17a3d41bd0a8240432a51897e8cf9a8
parentca9dcc870d9421524acb68f8b0d7e94ed6b24c2a (diff)
chore: add Github Codespace config
-rw-r--r--.devcontainer/Dockerfile31
-rw-r--r--.devcontainer/devcontainer.json45
-rw-r--r--.gitignore3
-rwxr-xr-xdebug.sh1
4 files changed, 80 insertions, 0 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
new file mode 100644
index 0000000..b601136
--- /dev/null
+++ b/.devcontainer/Dockerfile
@@ -0,0 +1,31 @@
+# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 10, 12, 14
+ARG NODE_VERSION=14
+FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION}
+
+# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version.
+ARG VARIANT=hugo
+# VERSION can be either 'latest' or a specific version number
+ARG VERSION=latest
+
+# Download Hugo
+RUN apt-get update && apt-get install -y ca-certificates openssl git curl && \
+ rm -rf /var/lib/apt/lists/* && \
+ case ${VERSION} in \
+ latest) \
+ 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 && \
+ echo ${VERSION} && \
+ wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-64bit.tar.gz && \
+ tar xf ${VERSION}.tar.gz && \
+ mv hugo /usr/bin/hugo
+
+# Hugo dev server port
+EXPOSE 1313
+
+# [Optional] Uncomment this section to install additional OS packages you may want.
+#
+# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
+# && apt-get -y install --no-install-recommends <your-package-list-here>
+
+# [Optional] Uncomment if you want to install more global node packages
+# RUN sudo -u node npm install -g <your-package-list-here>
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..4bf8a19
--- /dev/null
+++ b/.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"
+ }
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..9ebefdf
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+public
+resources
+assets/jsconfig.json \ No newline at end of file
diff --git a/debug.sh b/debug.sh
new file mode 100755
index 0000000..4d1312e
--- /dev/null
+++ b/debug.sh
@@ -0,0 +1 @@
+cd exampleSite && hugo server --gc --themesDir=../.. \ No newline at end of file