Skip to content

Commit 88f82e4

Browse files
committed
First try Doks
1 parent cd79698 commit 88f82e4

File tree

17,566 files changed

+1364422
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

17,566 files changed

+1364422
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "themes/PaperMod"]
55
path = themes/PaperMod
66
url = https://github.com/adityatelange/hugo-PaperMod.git
7+
[submodule "doks"]
8+
path = doks
9+
url = https://github.com/thuliteio/doks.git

doks

Submodule doks added at 607c24c
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
// These tasks will run in order when initializing your CodeSandbox project.
3+
"setupTasks": [
4+
{
5+
"name": "Install Dependencies",
6+
"command": "npm install"
7+
}
8+
],
9+
10+
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
11+
"tasks": {
12+
"start": {
13+
"name": "dev",
14+
"command": "npm run dev -- --baseURL=/ --appendPort=false --liveReloadPort=443 --bind=0.0.0.0",
15+
"runAtStart": true
16+
},
17+
"install": {
18+
"name": "install dependencies",
19+
"command": "npm install"
20+
}
21+
}
22+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM mcr.microsoft.com/devcontainers/base:ubuntu-22.04
2+
3+
RUN apt-get update && \
4+
apt-get install -y \
5+
ca-certificates \
6+
nodejs \
7+
npm \
8+
wget && \
9+
update-ca-certificates
10+
11+
ARG HUGO_VERSION="0.131.0"
12+
RUN wget --quiet "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz" && \
13+
tar xzf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz && \
14+
rm -r hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz && \
15+
mv hugo /usr/bin && \
16+
chmod 755 /usr/bin/hugo
17+
18+
WORKDIR /src
19+
COPY ./ /src
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"build": {
3+
"dockerfile": "./Dockerfile"
4+
}
5+
}

thulite-project/.gitpod.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Source: https://github.com/gitpod-io/template-hugo/blob/main/.gitpod.yml
2+
3+
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
4+
tasks:
5+
- name: Run start up tasks
6+
before: brew install hugo
7+
init: pnpm install
8+
command: hugo server --baseURL $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0 --disableFastRender --noHTTPCache --navigateToChanged
9+
10+
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
11+
ports:
12+
- port: 1313
13+
onOpen: open-preview

thulite-project/.hugo_build.lock

Whitespace-only changes.

thulite-project/.npmignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.env
2+
.netlify
3+
.hugo_build.lock
4+
node_modules
5+
public
6+
resources

thulite-project/.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
enable-pre-post-scripts=true
2+
auto-install-peers=true
3+
node-linker=hoisted
4+
prefer-symlinked-executables=false

thulite-project/.prettierignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
*.html
2+
*.ico
3+
*.png
4+
*.jp*g
5+
*.toml
6+
*.*ignore
7+
*.svg
8+
*.xml
9+
LICENSE
10+
.npmrc
11+
.gitkeep
12+
*.woff*

0 commit comments

Comments
 (0)