Installation¶
Requirements¶
- Python 3.12+
- Poetry (recommended) or pip
Package¶
PyPI name is future-framework; import name is always future.
poetry add future-framework
# or
pip install future-framework
# pyproject.toml
future-framework = "^1.1.0"
from future.application import Future
Scaffold an app¶
poetry run future init myproject
cd myproject
cp .env.example .env
poetry install
poetry run future migrate
poetry run future seed
poetry run python run.py
See Getting started and Configuration.