This repo defines all you see on my personal website here: https://louisstefanuto.github.io/my-site/.
All dependencies are listed in the pyproject.toml
. To create an environment, go to the project directory, install dependencies and activate your venv:
poetry install
poetry shell
Create a Conda environment and install dependencies from the requirements.txt
file:
conda create --name env_mysite python=3.11
conda activate env_mysite
pip install -r requirements.txt
Launch the server:
mkdocs serve
This repo supports automatic deployment, using Github Workflows. If you want to deploy manually, use:
mkdocs gh-deploy