Skip to content

Commit 2ac4b86

Browse files
committed
feat: initial commit
This is an (almost) direct port of the Caddy v1 docs to Markdown. In subsequent commits, pages irrelevant to Casket will be removed, and other changes will be made to make the docs specific to Casket.
0 parents  commit 2ac4b86

File tree

144 files changed

+11024
-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.

144 files changed

+11024
-0
lines changed

.dockerignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.yarn/*
2+
!.yarn/patches
3+
!.yarn/plugins
4+
!.yarn/releases
5+
!.yarn/sdks
6+
!.yarn/versions
7+
.yarn/cache
8+
# .pnp.*
9+
10+
# Dependencies
11+
/node_modules
12+
13+
# Production
14+
/build
15+
16+
# Generated files
17+
docs/.vitepress/cache
18+
docs/.vitepress/dist
19+
20+
# Misc
21+
.DS_Store
22+
.env.local
23+
.env.development.local
24+
.env.test.local
25+
.env.production.local
26+
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
31+
/.idea/
32+
/.vscode/

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
7+
[*.{js,jsx,ts,tsx,css,json,yml,yaml,md,mdx,vue}]
8+
charset = utf-8
9+
indent_style = space
10+
indent_size = 2
11+
12+
[*.{md,mdx}]
13+
max_line_length = 120

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.yarn/** linguist-vendored
2+
/.yarn/releases/* binary
3+
/.yarn/plugins/**/* binary
4+
/.pnp.* binary linguist-generated

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.yarn/*
2+
!.yarn/patches
3+
!.yarn/plugins
4+
!.yarn/releases
5+
!.yarn/sdks
6+
!.yarn/versions
7+
.yarn/cache
8+
# .pnp.*
9+
10+
# Dependencies
11+
/node_modules
12+
13+
# Production
14+
/build
15+
16+
# Generated files
17+
docs/.vitepress/cache
18+
docs/.vitepress/dist
19+
20+
# Misc
21+
.DS_Store
22+
.env.local
23+
.env.development.local
24+
.env.test.local
25+
.env.production.local
26+
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
31+
/.idea/
32+
/.vscode/

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/casket-docs.iml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/highlightedFiles.xml

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/releases/yarn-4.0.2.cjs

+893
Large diffs are not rendered by default.

.yarnrc.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
enableGlobalCache: false
2+
3+
nodeLinker: node-modules
4+
5+
yarnPath: .yarn/releases/yarn-4.0.2.cjs

Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:20-alpine
2+
3+
RUN apk add git ca-certificates
4+
5+
WORKDIR /build
6+
COPY package.json yarn.lock ./
7+
RUN yarn install
8+
COPY . .
9+
10+
ENV NODE_ENV=production
11+
CMD yarn build

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# casket-docs

0 commit comments

Comments
 (0)