1- import { ArrowLeft , ArrowRight , Cloud , Code , Container , Database , Monitor , Shield , Terminal , Wrench } from 'lucide-react' ;
1+ import {
2+ ArrowLeft ,
3+ ArrowRight ,
4+ Cloud ,
5+ Code ,
6+ Container ,
7+ Database ,
8+ Monitor ,
9+ Shield ,
10+ Terminal ,
11+ Wrench ,
12+ } from 'lucide-react' ;
213import type { Metadata } from 'next' ;
314import Link from 'next/link' ;
415
@@ -24,25 +35,25 @@ const categories = [
2435 name : 'Containers' ,
2536 description : 'Docker images and Compose stacks for local and production runs.' ,
2637 icon : < Container className = "h-5 w-5 text-primary" /> ,
27- examples : [ 'python -docker' ] ,
38+ examples : [ 'fastapi-docker' , 'django-docker' , 'celery -docker'] ,
2839 } ,
2940 {
3041 name : 'Database' ,
3142 description : 'PostgreSQL services, ORM helpers, and migration scaffolding.' ,
3243 icon : < Database className = "h-5 w-5 text-primary" /> ,
33- examples : [ 'python- postgres' , 'python -sqlalchemy' , 'python -redis' ] ,
44+ examples : [ 'postgres' , 'fastapi -sqlalchemy' , 'fastapi -redis' ] ,
3445 } ,
3546 {
3647 name : 'Observability' ,
3748 description : 'Error tracking and production diagnostics.' ,
3849 icon : < Monitor className = "h-5 w-5 text-primary" /> ,
39- examples : [ 'python -sentry' ] ,
50+ examples : [ 'fastapi -sentry' ] ,
4051 } ,
4152 {
4253 name : 'Security' ,
4354 description : 'Authentication and authorization skeletons.' ,
4455 icon : < Shield className = "h-5 w-5 text-primary" /> ,
45- examples : [ 'python -auth-jwt' ] ,
56+ examples : [ 'fastapi -auth-jwt' ] ,
4657 } ,
4758 {
4859 name : 'CI & GitHub' ,
@@ -54,19 +65,19 @@ const categories = [
5465 name : 'Developer Experience' ,
5566 description : 'Editor integrations and remote development environments.' ,
5667 icon : < Terminal className = "h-5 w-5 text-primary" /> ,
57- examples : [ 'python-devcontainer ' ] ,
68+ examples : [ 'development-container ' ] ,
5869 } ,
5970 {
6071 name : 'API & Services' ,
6172 description : 'Backend-focused add-ons for FastAPI and similar templates.' ,
6273 icon : < Code className = "h-5 w-5 text-primary" /> ,
63- examples : [ 'python -sqlalchemy' , 'python -redis' , 'python -auth-jwt' ] ,
74+ examples : [ 'fastapi -sqlalchemy' , 'fastapi -redis' , 'fastapi -auth-jwt' ] ,
6475 } ,
6576 {
6677 name : 'Tooling' ,
6778 description : 'Cross-cutting workflow improvements for Python projects.' ,
6879 icon : < Wrench className = "h-5 w-5 text-primary" /> ,
69- examples : [ 'github-setup' , 'python-devcontainer ' ] ,
80+ examples : [ 'github-setup' , 'development-container ' ] ,
7081 } ,
7182] ;
7283
@@ -102,8 +113,8 @@ export default function DocsExtensionsPage() {
102113 < div className = "rounded-md bg-muted p-4" >
103114 < pre className = "text-sm overflow-x-auto" >
104115 < code >
105- uvx create-awesome-python-app@latest my-app --template fastapi-starter --addons python -docker
106- python- postgres github-setup
116+ uvx create-awesome-python-app@latest my-app --template fastapi-starter --addons fastapi -docker
117+ postgres github-setup
107118 </ code >
108119 </ pre >
109120 </ div >
0 commit comments