14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
---
|
|
description: Defines the recommended folder structure for FastAPI projects to maintain organization and separation of concerns within the 'app' directory.
|
|
globs: app/**/*.*
|
|
---
|
|
- Follow this folder structure:
|
|
|
|
app/
|
|
main.py
|
|
models/
|
|
schemas/
|
|
routers/
|
|
dependencies/
|
|
services/
|
|
tests/ |