FastAPI-boilerplate
FastAPI-boilerplate copied to clipboard
An extendable async API using FastAPI, Pydantic V2, SQLAlchemy 2.0, PostgreSQL and Redis.
Closes #111 Progress - [X] Infra + code -> loki, prom, grafana, tempo, multiproc prom, compose - [ ] Dashboard -> should check if metrics and titles match - [x]...
**Is your feature request related to a problem? Please describe.** Not really a problem. More of a standalone improvement for the current logging + adding metrics dashboard. **Describe the solution...
API's giving 404. I build using docker-compose My latest code can see here-> https://github.com/rithin/kappitrails_api/tree/development_v1 **Description** only apis are working if i wrote in the main.py but what in api/v1/users.py or...
**Describe the solution you'd like** Migrate to using UUID v7 (`uuid6` package, which despite its name provides `uuid7()` fn) as data type for `id` columns. **Additional context** These articles outline...
Can add an admin panel to this application that displays all user, posts etc?
## 🔭To Do Not exactly a roadmap, more of a possible TODO kind of list: ### ⚡️API - [ ] Add a photo upload endpoint for users - [ ]...
[https://github.com/sqlalchemy/sqlalchemy/discussions/11692](url) sqlalchemy.exc.CompileError: (in table 'users', column 'id'): SQLite does not support autoincrement for composite primary keys ```python class User(Base): __tablename__ = "users" id: Mapped[int] = mapped_column( "id", autoincrement=True, nullable=False, unique=True,...
Are there plans on integrating Stripe into the boilerplate any time soon ?
**Describe the bug or question** A clear and concise description of what the bug or question is. **To Reproduce** Please provide a self-contained, minimal, and reproducible example of your use...