Skip to content

acceptilation.github.io

Notes on this, that, and other things

Set up Python

sudo apt install python3-full;
python3 -m venv ./.venv;
source ./.venv/bin/activate;
pip install --requirement requirements.txt;

Start web server

zensical serve;

Alternatively, use the JetBrains run configuration:
zensical-serve