Skip to content

Commit 26579fe

Browse files
committed
Initial commit
0 parents  commit 26579fe

File tree

9 files changed

+2700
-0
lines changed

9 files changed

+2700
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/public
2+
node_modules
3+

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM antora/antora AS build
2+
3+
COPY . /app
4+
WORKDIR /app
5+
6+
RUN npm ci && npm run build
7+
8+
FROM nginx:stable-alpine
9+
10+
COPY --from=build /app/public /usr/share/nginx/html

LICENSE

Lines changed: 661 additions & 0 deletions
Large diffs are not rendered by default.

antora-playbook.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
site:
2+
title: "Code FREAK Docs"
3+
url: https://docs.codefreak.org
4+
start_page: codefreak::index.adoc
5+
robots: allow
6+
content:
7+
sources:
8+
- url: https://github.com/code-freak/code-freak.git
9+
branches: master
10+
start_path: docs
11+
ui:
12+
bundle:
13+
url: https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/master/raw/build/ui-bundle.zip?job=bundle-stable
14+
snapshot: true
15+
supplemental_files: ./supplemental-ui
16+
output:
17+
dir: ./public
18+

0 commit comments

Comments
 (0)