Compare commits
5 Commits
renovate/a
...
56e86e0c7c
| Author | SHA1 | Date | |
|---|---|---|---|
| 56e86e0c7c | |||
|
24f78bcd31
|
|||
|
711240311c
|
|||
| c375fd99fa | |||
| b278ffaf95 |
@@ -10,7 +10,7 @@ jobs:
|
|||||||
runs-on: linux_amd
|
runs-on: linux_amd
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v4
|
||||||
# with:
|
# with:
|
||||||
# lfs: 'true'
|
# lfs: 'true'
|
||||||
- name: Checkout LFS
|
- name: Checkout LFS
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Build Stage
|
# Build Stage
|
||||||
FROM hugomods/hugo:0.148.2 AS build
|
FROM hugomods/hugo:0.156.0 AS build
|
||||||
|
|
||||||
ARG BLOWFISH_VERSION
|
ARG BLOWFISH_VERSION
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ WORKDIR /opt/blog
|
|||||||
COPY . /opt/blog/
|
COPY . /opt/blog/
|
||||||
|
|
||||||
RUN git submodule update --init --recursive && \
|
RUN git submodule update --init --recursive && \
|
||||||
git -C themes/blowfish/ checkout v2.89.1
|
git -C themes/blowfish/ checkout v2.97.0
|
||||||
RUN hugo
|
RUN hugo
|
||||||
|
|
||||||
# Publish Stage
|
# Publish Stage
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ title = "d3vyce Blog"
|
|||||||
logo = "img/author_transparent.webp"
|
logo = "img/author_transparent.webp"
|
||||||
# secondaryLogo = "img/secondary-logo.png"
|
# secondaryLogo = "img/secondary-logo.png"
|
||||||
description = "Hi 👋, Welcome to my Blog!"
|
description = "Hi 👋, Welcome to my Blog!"
|
||||||
copyright = "d3vyce 2021-2025 © All rights reserved."
|
copyright = "d3vyce 2021-2026 © All rights reserved."
|
||||||
|
|
||||||
[params.author]
|
[params.author]
|
||||||
name = "d3vyce"
|
name = "d3vyce"
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
56
content/projects/fastapi-toolsets/index.md
Normal file
56
content/projects/fastapi-toolsets/index.md
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
---
|
||||||
|
title: "Fastapi-Toolsets"
|
||||||
|
date: 2026-01-25
|
||||||
|
slug: "fastapi-toolsets"
|
||||||
|
showAuthor: false
|
||||||
|
showWordCount: false
|
||||||
|
showReadingTime: false
|
||||||
|
showRelatedContent: false
|
||||||
|
showPagination: false
|
||||||
|
tags: ["fastapi", "package", "toolsets"]
|
||||||
|
---
|
||||||
|
|
||||||
|

|
||||||
|
{{< github repo="d3vyce/fastapi-toolsets" >}}
|
||||||
|
|
||||||
|
> Reusable tools for FastAPI: async CRUD, fixtures, CLI, and standardized responses
|
||||||
|
|
||||||
|
FastAPI Toolsets provides production-ready utilities for FastAPI applications built with async SQLAlchemy and PostgreSQL. It includes generic CRUD operations, a fixture system with dependency resolution, a Django-like CLI, standardized API responses, and structured exception handling with automatic OpenAPI documentation.
|
||||||
|
|
||||||
|
[](https://github.com/d3vyce/fastapi-toolsets/actions/workflows/ci.yml)
|
||||||
|
[](https://codecov.io/gh/d3vyce/fastapi-toolsets)
|
||||||
|
[](https://github.com/astral-sh/ty)
|
||||||
|
[](https://github.com/astral-sh/uv)
|
||||||
|
[](https://github.com/astral-sh/ruff)
|
||||||
|
[](https://www.python.org/downloads/)
|
||||||
|
[](https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Documentation**: [https://fastapi-toolsets.d3vyce.fr](https://fastapi-toolsets.d3vyce.fr)
|
||||||
|
|
||||||
|
**Source Code**: [https://github.com/d3vyce/fastapi-toolsets](https://github.com/d3vyce/fastapi-toolsets)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
uv add fastapi-toolsets
|
||||||
|
```
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **CRUD**: Generic async CRUD operations with `CrudFactory`
|
||||||
|
- **Fixtures**: Fixture system with dependency management, context support and pytest integration
|
||||||
|
- **CLI**: Django-like command-line interface with fixture management and custom commands support
|
||||||
|
- **Standardized API Responses**: Consistent response format across your API
|
||||||
|
- **Exception Handling**: Structured error responses with automatic OpenAPI documentation
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT License - see [LICENSE](LICENSE) for details.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Contributions are welcome! Please feel free to submit issues and pull requests.
|
||||||
Submodule themes/blowfish updated: 2f12b8d0d9...9f2045746e
Reference in New Issue
Block a user