File tree Expand file tree Collapse file tree 3 files changed +30504
-2
lines changed
Expand file tree Collapse file tree 3 files changed +30504
-2
lines changed Original file line number Diff line number Diff line change 2222 pip3 install $(mkdocs get-deps)
2323 sudo apt-get update
2424 sudo apt-get install -y lftp
25-
25+ sudo apt-get install nodejs
26+ sudo apt-get install npm
27+ sudo npm i openapi-to-md -g
28+ - name : Start application containers # same steps as in ci.yml, might make it more modular in the future
29+ working-directory : .devcontainer
30+ run : docker compose up -d
31+ - name : Wait until entrypoint is finished and Hashtopolis is started
32+ run : bash .github/scripts/await-hashtopolis-startup.sh
33+ - name : Download newest apiv2 spec
34+ run : |
35+ wget http://localhost:8080/api/v2/openapi.json -P /tmp/
36+ openapi-to-md /tmp/openapi.json /docs/api/
2637 - name : Build MkDocs site
2738 run : |
2839 mkdocs build
Original file line number Diff line number Diff line change @@ -16,5 +16,5 @@ virtualenv venv
1616source venv/bin/activate
1717pip3 install mkdocs
1818pip3 install $( mkdocs get-deps)
19- mkdocs server
19+ mkdocs serve
2020```
You can’t perform that action at this time.
0 commit comments