This guide helps contributors get a productive dev environment quickly.
- Python 3.9+
- Git
- Optional: Docker, Make (or Windows equivalents)
git clone https://github.com/zaber-dev/Zeython.git
cd Zeython
python -m venv .venv
. .venv/Scripts/activate # Windows PowerShell: .venv\Scripts\Activate.ps1
pip install -r requirements.txtCreate .env (copy from .env_example if available):
FLASK_HOST=127.0.0.1
FLASK_PORT=5000
DATABASE_URL=sqlite:///database.dbpython config/application.pypytest -q- Recommended: ruff/flake8 and black (can be added later)
- Configure your editor to format on save
mkdocs serve