-
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
125 changed files
with
25,950 additions
and
71,669 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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
/.docz | ||
/dist | ||
/docs | ||
/node_modules | ||
lib-stats.development.html | ||
lib-stats.html | ||
/site | ||
/src/docs/_assets/generated/* | ||
!.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: "3" | ||
services: | ||
mkdocs: | ||
build: docker/mkdocs | ||
ports: | ||
- 8000:8000 | ||
volumes: | ||
- .:/workspace:z |
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>=8.0.0,<9.0.0' | ||
RUN mkdir /workspace | ||
|
||
COPY ./init-container.sh /root/init-container.sh | ||
WORKDIR /workspace |
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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
# This script is to be executed when the docker container is started | ||
|
||
# Set UID of user `node` on guest to match the UID of the user on the host machine | ||
usermod -u $(stat -c "%u" $1) node | ||
# Set GID of group `node` on guest to match the GID of the users primary group on the host machine | ||
groupmod -g $(stat -c "%g" $1) node | ||
|
||
chown -R node /workspace |
Oops, something went wrong.