From 5ee34c649c443aefcc33ee69a8c8488cb36f1d7a Mon Sep 17 00:00:00 2001 From: Jimmy Cai Date: Sat, 16 Oct 2021 08:04:04 +0000 Subject: [PATCH] feat: add stack theme --- .devcontainer/devcontainer.json | 5 ++++- config.yaml | 3 +++ go.mod | 5 +++++ go.sum | 2 ++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 config.yaml create mode 100644 go.mod create mode 100644 go.sum diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d5b0713..4bf8a19 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -38,5 +38,8 @@ // "postCreateCommand": "uname -a", // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node" + "remoteUser": "node", + "features": { + "golang": "latest" + } } diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..3809616 --- /dev/null +++ b/config.yaml @@ -0,0 +1,3 @@ +module: + imports: + - path: github.com/CaiJimmy/hugo-theme-stack \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..d1bc74b --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module github.com/CaiJimmy/hugo-theme-stack-starter + +go 1.17 + +require github.com/CaiJimmy/hugo-theme-stack v3.2.0+incompatible // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..18c9b93 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/CaiJimmy/hugo-theme-stack v3.2.0+incompatible h1:y6AOiZaDiPG/IauQarGWFEy/tEfJ/WwvCtpIM2x3DcA= +github.com/CaiJimmy/hugo-theme-stack v3.2.0+incompatible/go.mod h1:Tacngkxf7u2kfufDzxoX7yqktykqc/Vi1LwJOHGE6Nw=