starlette-example
starlette-example copied to clipboard
An example Starlette application
As mentioned [here](https://github.com/encode/starlette-example/issues/1) tests could be nice so I added them as an exercise. I tried to not change too much the structure of the project but would prefer to...
Is this project intended to be a single app example, or could it potentially include multiple examples of various features/usage with other libs? I am sitting on enough experiments and...
It'd be nice to add a `tests.py` to demonstrate how to write tests against this app. Pull requests would be very welcome! 😎
Add pre-commit config and GitHub Action to prevent code formatting issues on pull requests. E. g. `.pre-commit-config.yaml` ```yaml repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.3.0 hooks: - id: trailing-whitespace - id:...