forked from srobo/runbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is motivated by the issues around pipenv always upgrading every dependency whenever you touch any dependency. (See pypa/pipenv#2665 and pypa/pipenv#2412)
- Loading branch information
1 parent
31e07b7
commit b85f214
Showing
10 changed files
with
94 additions
and
231 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
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 was deleted.
Oops, something went wrong.
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,11 @@ | ||
mkdocs | ||
mkdocs-material | ||
pymdown-extensions | ||
mdx-include | ||
mkdocs-markdownextradata-plugin | ||
git+https://github.com/pugong/mkdocs-mermaid-plugin@abf14392b0ed0c7022210b32c4e7c9c3e4c5c68a | ||
|
||
# Development tooling | ||
yamllint | ||
|
||
pip-tools |
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,31 @@ | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile | ||
# | ||
beautifulsoup4==4.8.0 | ||
click==7.0 # via mkdocs, pip-tools | ||
cyclic==1.0.0 # via mdx-include | ||
jinja2==2.10.1 # via mkdocs | ||
livereload==2.6.0 # via mkdocs | ||
markdown==3.1 # via mdx-include, mkdocs, pymdown-extensions | ||
markupsafe==1.1.1 # via jinja2 | ||
mdx-include==1.3.3 | ||
mkdocs-markdownextradata-plugin==0.0.5 | ||
mkdocs-material==4.1.1 | ||
git+https://github.com/pugong/mkdocs-mermaid-plugin@abf14392b0ed0c7022210b32c4e7c9c3e4c5c68a | ||
mkdocs==1.0.4 | ||
pathspec==0.5.9 # via yamllint | ||
pip-tools==4.1.0 | ||
pygments==2.3.1 # via mkdocs-material | ||
pymdown-extensions==6.0 | ||
pyyaml==5.1 # via mkdocs, yamllint | ||
rcslice==1.1.0 # via mdx-include | ||
six==1.12.0 # via livereload, pip-tools | ||
soupsieve==1.9.1 # via beautifulsoup4 | ||
tornado==6.0.2 # via livereload, mkdocs | ||
yamllint==1.15.0 | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools==41.2.0 # via markdown |
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,3 @@ | ||
#!/bin/sh | ||
|
||
exec mkdocs 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,3 @@ | ||
#!/bin/sh | ||
|
||
exec yamllint -sc yamllint.yml yamllint.yml docs/ mkdocs.yml |
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,3 @@ | ||
#!/bin/sh | ||
|
||
exec mkdocs serve |