-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change documentation platform from Docz to Docoff
- Loading branch information
Showing
375 changed files
with
28,286 additions
and
73,781 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,3 @@ | |
defaults | ||
not ie > 1 | ||
not ie_mob > 1 | ||
maintained node versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Host system port where the live documentation is to be made accessible | ||
COMPOSE_START_PORT=8000 | ||
|
||
# Ownership of the files created in the container | ||
COMPOSE_UID=1000 | ||
COMPOSE_GID=1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/.docz | ||
/dist | ||
/docs | ||
/node_modules | ||
lib-stats.development.html | ||
lib-stats.html | ||
/site | ||
/src/docs/_assets/generated/* | ||
.env | ||
!.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
services: | ||
# Base services - do not run directly | ||
mkdocs: | ||
build: docker/mkdocs | ||
user: ${COMPOSE_UID-1000}:${COMPOSE_GID-1000} | ||
volumes: | ||
- .:/workspace:z | ||
node: | ||
build: docker/node | ||
user: ${COMPOSE_UID-1000}:${COMPOSE_GID-1000} | ||
volumes: | ||
- .:/workspace:z | ||
|
||
# Dev services | ||
mkdocs_dev_server: | ||
extends: mkdocs | ||
entrypoint: mkdocs serve | ||
ports: | ||
- ${COMPOSE_START_PORT-8000}:8000 | ||
node_dev_server: | ||
extends: node | ||
entrypoint: npm start | ||
node_shell: | ||
extends: node | ||
entrypoint: bash | ||
|
||
# Build services | ||
mkdocs_build_site: | ||
extends: mkdocs | ||
entrypoint: mkdocs build | ||
node_build_site: | ||
extends: node | ||
entrypoint: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM node:16 | ||
|
||
RUN apt-get update && apt-get install -y python3-pip | ||
RUN pip3 install 'mkdocs-material>=9.0.0,<10.0.0' | ||
RUN mkdir /workspace | ||
|
||
COPY ./init-container.sh /root/init-container.sh | ||
WORKDIR /workspace |
Oops, something went wrong.