A dead-simple way to share public markdown notes.
Set up your environment variables:
cp .env.example .env
# Edit .env with your valuesFor base deployment, run:
docker-compose up -dand access the app at http://localhost:5000
For production deployment with HTTPS and rate limiting, run:
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -da access the app at your selected domain.
This project uses uv, so simply use
uv sync to install dependencies,
uv run pytest to run tests and
uv run python app.py to start the app.