forked from fetchai/docs-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
35 lines (33 loc) · 1.13 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tox]
envlist = docs, docs-serve
[testenv:docs]
skipsdist = True
skip_install = True
description = Build the documentation.
deps = markdown==3.2.1
mkdocs==1.1.2
mkdocs-material==5.5.9
pymdown-extensions==8.0
mkdocs-gitbook==0.0.1
mkdocs-monorepo-plugin==0.4.11
libsass==0.20.1
mkdocs-macros-plugin==0.5.0
markdown-include==0.6.0
commands = pip3 install git+https://github.com/pugong/mkdocs-mermaid-plugin.git#egg=mkdocs-mermaid-plugin
mkdocs build --clean
[testenv:docs-serve]
skipsdist = True
skip_install = True
description = Run a development server for working on documentation.
deps = markdown==3.2.1
mkdocs==1.1.2
mkdocs-material==5.5.9
pymdown-extensions==8.0
mkdocs-gitbook==0.0.1
libsass==0.20.1
mkdocs-macros-plugin==0.5.0
markdown-include==0.6.0
commands = pip3 install git+https://github.com/pugong/mkdocs-mermaid-plugin.git#egg=mkdocs-mermaid-plugin
mkdocs build --clean
python -c 'print("###### Starting local server. Press Control+C to stop server ######")'
mkdocs serve -a localhost:8080