This is the source code for https://docs.ethstaker.org.
To execute/build locally:
- Create virtual environment:
python3 -m venv venv/
- Start the local server:
. venv/bin/activate && pip install -r requirements.txt && mkdocs serve
- Or run each command individually:
- Start python virtual environment:
. venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
- Run the script:
mkdocs serve
- Start python virtual environment:
- Go to http://127.0.0.1:8000/ to view changes
- Close virtual environment:
deactivate
To build the site use mkdocs build
.
Resources: