mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
10 lines
263 B
Bash
Executable file
10 lines
263 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Copy README.md as index.md and change links
|
|
pip install -r requirements.txt
|
|
|
|
# Copy README.md as index.md and change links
|
|
sed -r -e 's![\.\/]*docs[\/]*!./!g' ../README.md > index.md
|
|
|
|
# Start mkdocs local server
|
|
mkdocs serve -f mkdocs.yml
|