@@ -6,12 +6,30 @@ Bolt is a web framework for building products with Python.
66
77With the core ` bolt ` package you can build an app that:
88
9- - Matches [ URL patterns] ( https://github.com/dropseed/bolt/tree/main/bolt/bolt/urls/README.md ) to Python views
10- - Handles HTTP requests and responses
11- - Renders HTML templates with Jinja
12- - Processes user input via forms
13- - Has a CLI interface
14- - Serves static assets (CSS, JS, images)
15- - Can be modified with middleware
16- - Integrates first-party and third-party packages
17- - Has a preflight check system
9+ - Matches [ URL patterns] ( https://boltframework.dev/docs/bolt/bolt/urls ) to Python [ views] ( https://boltframework.dev/docs/bolt/bolt/views )
10+ - Handles [ HTTP requests and responses] ( https://boltframework.dev/docs/bolt/bolt/http )
11+ - Renders [ HTML templates] ( https://boltframework.dev/docs/bolt/bolt/templates ) with Jinja
12+ - Processes user input via [ forms] ( https://boltframework.dev/docs/bolt/bolt/forms )
13+ - Has a [ CLI interface] ( https://boltframework.dev/docs/bolt/bolt/cli )
14+ - Serves static [ assets] ( https://boltframework.dev/docs/bolt/bolt/assets ) (CSS, JS, images)
15+ - Can be modified with [ middleware] ( https://boltframework.dev/docs/bolt/bolt/middleware )
16+ - Integrates first-party and third-party [ packages] ( https://boltframework.dev/docs/bolt/bolt/packages )
17+ - Has a [ preflight check system] ( https://boltframework.dev/docs/bolt/bolt/preflight )
18+
19+ With the official Bolt ecosystem packages you can:
20+
21+ - Integrate a full-featured [ database ORM] ( https://boltframework.dev/docs/bolt-db/ )
22+ - Use a built-in [ user authentication] ( https://boltframework.dev/docs/bolt-auth/ ) system
23+ - [ Lint and format code] ( https://boltframework.dev/docs/bolt-code/ )
24+ - Run a [ database-backed cache] ( https://boltframework.dev/docs/bolt-cache/ )
25+ - [ Send emails] ( https://boltframework.dev/docs/bolt-mail/ )
26+ - Streamline [ local development] ( https://boltframework.dev/docs/bolt-dev/ )
27+ - Manage [ feature flags] ( https://boltframework.dev/docs/bolt-flags/ )
28+ - Integrate [ HTMX] ( https://boltframework.dev/docs/bolt-htmx/ )
29+ - Style with [ Tailwind CSS] ( https://boltframework.dev/docs/bolt-tailwind/ )
30+ - Add [ OAuth login] ( https://boltframework.dev/docs/bolt-oauth/ ) and API access
31+ - Run tests with [ pytest] ( https://boltframework.dev/docs/bolt-test/ )
32+ - Run a [ background job worker] ( https://boltframework.dev/docs/bolt-worker/ )
33+ - Build [ staff tooling and admin dashboards] ( https://boltframework.dev/docs/bolt-staff/ )
34+
35+ Learn more at [ boltframework.dev] ( https://boltframework.dev ) .
0 commit comments