InstallationΒΆ
Make a new directory for your site and traverse into it:
mkdir new-site && cd new-site
Install
poetry
(if not already installed) to handle Python packages:curl -sSL https://install.python-poetry.org | python3 -
Follow the instructions from the
poetry
installation outputCreate
poetry
project, addcoltrane
dependency, and install Python packages:poetry init --no-interaction --dependency 'coltrane:<1' && poetry install
Start a new
coltrane
site:poetry run coltrane create
Start local development server:
poetry run coltrane play
Go to localhost:8000 in web browser