An opinionated toolkit for creating easy-to-work-with GraphQL APIs using https://github.com/strawberry-graphql/strawberry and Django.
pip install strawberry-vercajkIn your Django settings file, add the following settings:
from strawberry_vercajk import StrawberryVercajkSettings
STRAWBERRY_VERCAJK: StrawberryVercajkSettings = {
...
}See StrawberryVercajkSettings for configuration options.
Pull requests for any improvements are welcome.
Poetry is used to manage dependencies. To get started follow these steps:
git clone https://github.com/coexcz/strawberry-vercajk
cd strawberry_vercajk
poetry install
poetry run pytestWe have a configuration for pre-commit, to add the hook run the following command:
pre-commit install