Build a Docusaurus-like Site with FastAPI: Step 6 — Sidebar GenerationThis guide implements a dynamic sidebar by scanning Markdown files and updating layouts to create a professional two-column documentation…Nov 22, 2025Nov 22, 2025
Build a Docusaurus-like Site with FastAPI: Step 5 — Handling Static FilesThis post shows how to serve static files, like images referenced in Markdown, by mounting an `assets` directory in FastAPI, fixing broken…Nov 10, 2025Nov 10, 2025
Build a Docusaurus-like Site with FastAPI: Step 4 — Parsing FrontmatterThis guide shows how to use python-frontmatter in FastAPI to parse Markdown metadata, like ‘title’, and dynamically pass it to a Jinja2…Nov 9, 2025Nov 9, 2025
Build a Docusaurus-like Site with FastAPI: Step 3 — Code HighlightingThis guide shows how to add code syntax highlighting to a FastAPI docs site using Pygments and `python-markdown` extensions, including…Nov 7, 2025Nov 7, 2025
Build a Docusaurus-like Site with FastAPI: Step 2 — Render MarkdownThis article guides you through rendering Markdown files in a FastAPI application by installing `python-markdown`, creating a new route…Nov 4, 2025Nov 4, 2025
Build a Docusaurus-like Site with FastAPI: Step 1 — HTML TemplateThis guide explains the first step in building a documentation site with FastAPI: setting up the project and using Jinja2 to render a…Nov 4, 2025A response icon1Nov 4, 2025A response icon1
Build Your Own Forum with FastAPI: Step 10 — CategoriesThis article explains how to add a “Categories” feature to a FastAPI forum by updating database models, modifying routes, and updating…Nov 4, 2025Nov 4, 2025
Build Your Own Forum with FastAPI: Step 9 — Upload ImagesThis guide details adding S3 image uploads to a FastAPI forum. It covers backend logic with `boto3`, database model changes, and updating…Nov 2, 2025Nov 2, 2025
Build Your Own Forum with FastAPI: Step 8 — Full Text SearchThis guide adds a powerful full-text search to a FastAPI forum using PostgreSQL’s `tsvector`, SQL triggers, and a new search route.Oct 31, 2025Oct 31, 2025
Build Your Own Forum with FastAPI: Step 7 — PermissionsThis guide implements a permission system for the FastAPI forum, adding admin roles and a user-banning feature with model updates and…Oct 26, 2025Oct 26, 2025