A staging repository for starting the migration from Docusaurus to Mkdocs. This particularly repository uses MkDocs Material.
- Make sure
python
(Python 3) andpip
are installed and in your path - It's recommended to use a virtual environment, as is common practice, but you can also just skip to the second step for simplicity
- Enter the virtual environment:
# Create the env
python -m venv venv
# Enter the env
source venv/bin/activate
- Install dependencies (make sure you're in the project's directory)
pip install -r requirements.txt
- Once installed, run the serve command:
# If you're in a virtual env
mkdocs serve
# If you're not in a virtual env and this the above doesn't work
python -m mkdocs serve
For documentation on migration, see: MIGRATION.MD.