A simple content site framework that harnesses the power of Django without the hassle
A simple content site framework that harnesses the power of Django without the hassle.
Features
- Can be a standalone static site or added to
INSTALLED_APPSto integrate into an existing Django site - Renders markdown files automatically
- Can use data from JSON files in templates and content
- All the power of Django templates, template tags, and filters
- Can include other Django apps
- Build HTML output for a true static site (coming soon)
Still a little experimental. 😉
Install
Create a standalone site
- Make a new directory for your site and traverse into it:
mkdir new-site && cd new-site - Install
poetry(if needed):curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - - Add
coltranedependency:poetry init --dependency coltrane-web:latest && poetry install - Initialize
coltrane:poetry run coltrane init - Create secret key at