Skip to content

Commit 50901d2

Browse files
author
AlexRogalskiy
committed
Added info on workflows
Updates on github-actions
1 parent 866f500 commit 50901d2

File tree

5 files changed

+10
-23
lines changed

5 files changed

+10
-23
lines changed

.github/community-code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ Should incidents arise, upon adjudication those found to be in violation of this
5555

5656

5757
## Policy precedence
58-
This version of the Nullables.io Community Code of Conduct may be a copy included for your convenience, and as such may not be up to date; all versions of the Nullables.io Community Code of Conduct are superseded by the version found in the [repository](https://github.com/AlexRogalskiy/gradle-java-sample), which takes precedence over any prior versions.
58+
This version of the Nullables.io Community Code of Conduct may be a copy included for your convenience, and as such may not be up to date; all versions of the Nullables.io Community Code of Conduct are superseded by the version found in the [repository](https://github.com/AlexRogalskiy/java-patterns), which takes precedence over any prior versions.

.stylelintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,8 @@
55
docs
66
images
77
node_modules
8+
tilt_modules
9+
k8s
10+
helm
811
reports
912
scripts

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
##
22
## ---- Base OS layer ----
3-
## docker build -t <container_tag> --build-arg IMAGE_SOURCE=node IMAGE_TAG=lts-alpine .
3+
## docker build -t <container_tag> --build-arg IMAGE_SOURCE=node IMAGE_TAG=12-buster .
44
##
55
ARG IMAGE_SOURCE=node
6-
ARG IMAGE_TAG=lts-alpine
6+
ARG IMAGE_TAG=12-buster
77

88
FROM ${IMAGE_SOURCE}:${IMAGE_TAG} AS base
99

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,9 @@ python -m mkdocs
170170
```shell script
171171
python -m pip install mkdocs-material --quiet
172172
python -m pip install markdown-include --quiet
173-
python -m pip install mkdocs-techdocs-core --no-cache-dir --quiet
174-
python -m pip install mkdocs-git-revision-date-localized-plugin --no-cache-dir --quiet
175-
python -m pip install mkdocs-awesome-pages-plugin --no-cache-dir --quiet
176-
python -m pip install mdx_truly_sane_lists --no-cache-dir --quiet
177-
python -m pip install mkdocs-include-markdown-plugin --no-cache-dir --quiet
178-
python -m pip install click-man --no-cache-dir --quiet
173+
...
174+
(see requirements.txt)
175+
...
179176
```
180177

181178
4\) Start the server at ***localhost*** by running the following command:

scripts/build-docs.sh

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,7 @@ wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py -O $TMPDIR/get-
2626
python3 $TMPDIR/get-pip.py
2727

2828
## Install project dependencies
29-
python3 -m pip install mkdocs --quiet
30-
python3 -m pip install mkdocs-material --quiet
31-
python3 -m pip install markdown-include --quiet
32-
python3 -m pip install fontawesome_markdown --quiet
33-
python3 -m pip install mkdocs-redirects --quiet
34-
python3 -m pip install mkdocs-techdocs-core --no-cache-dir --quiet
35-
python3 -m pip install mkdocs-git-revision-date-localized-plugin --no-cache-dir --quiet
36-
python3 -m pip install mkdocs-awesome-pages-plugin --no-cache-dir --quiet
37-
python3 -m pip install mdx_truly_sane_lists --no-cache-dir --quiet
38-
python3 -m pip install smarty --no-cache-dir --quiet
39-
python3 -m pip install mkdocs-include-markdown-plugin --no-cache-dir --quiet
40-
#python3 -m pip install mkdocs_pymdownx_material_extras --no-cache-dir --quiet
41-
python3 -m pip install click-man --no-cache-dir --quiet
42-
python3 -m pip install cookiecutter --no-cache-dir --quiet
29+
python3 -m pip install -r ./docs/requirements.txt
4330

4431
## Start server locally
4532
python3 -m mkdocs serve --verbose --dirtyreload

0 commit comments

Comments
 (0)