next.dj next.dj next.dj
  • Issues
  • Discussions
/

Getting Started

  • Getting Started
    • Overview
    • Installation
    • Building the First Page
    • Adding Layouts and Context
    • Components and Static Assets
    • Forms and Actions
    • Testing and Autoreload
    • What to Read Next

Guides

  • Topic Guides
    • File Router
    • URL Reversing
    • Pages
    • Layouts
    • Context
    • Components
    • Forms
      • Forms Overview
      • Actions
      • Form Templates
      • ModelForms
      • Formsets
      • Validation and Re-render
      • Frozen Form Specs
      • Action Backends
      • Form Signals
    • Static Assets
      • Static Assets Overview
      • Co-located Files
      • Static Template Tags
      • Deduplication
      • Asset Kinds
      • Custom Stems
      • JavaScript Context
      • Static Backends
      • Static Signals
    • Dependency Injection
    • Signals
    • Testing
    • Extending
    • Project Layout
    • Multi-Project Setup
  • How-To Guides
    • Add a Page
    • Reverse URLs
    • Reload Routes From Code
    • Write a Router Backend
    • Read Query Parameters
    • Add a Custom Template Loader
    • Require Login on File-Routed Pages
    • Internationalize Routes
    • Customize 404 and 500 Pages
    • Share Context Across Pages
    • Build a Composite Component
    • Share Components Across Projects
    • Resolve Feature Flags With DI
    • Add a New Asset Kind
    • Add a Custom Stem
    • Customise Rendered Static Tags
    • Override the JS Context Serializer
    • Resolve Asset URLs Through a Custom Backend
    • Handle File Uploads
    • Use ModelForm for CRUD
    • Use Formsets
    • Write a Form Action Backend
    • Extend a Default Backend Entry
    • Test a Page With Actions
    • Test a Component in Isolation
    • Integrate Django Admin
    • Scope Requests Per Tenant
    • Observe Framework Signals
    • Stream Live Updates With SSE
    • Split Settings per Environment

Reference

  • API Reference
    • Pages Reference
    • Components Reference
    • URLs Reference
    • Forms Reference
    • Static Reference
    • Dependency Injection Reference
    • Configuration Reference
    • Server Reference
    • Signals Reference
    • Testing Reference
    • Apps Reference
    • Utils Reference
    • System Checks
    • Settings
    • Template Tags
    • Decorators and Markers

Going Further

  • Internals
    • Internals Overview
    • Request Lifecycle
    • Page Discovery
    • URL Router
    • Component Pipeline
    • Dependency Resolver
    • Static Pipeline
    • Action Dispatch
    • Autoreload
    • Contributor Notes
  • Deployment
    • Deployment Checklist
    • Production Settings
    • Static Files in Production
    • WSGI and ASGI
  • Security
    • Security Overview
    • CSRF and Forms
    • Static Asset Security
    • DI and Untrusted Input
    • Reporting a Vulnerability

Help and Project

  • Frequently Asked Questions
    • General Questions
    • Usage Questions
    • Troubleshooting
  • Contributing
    • Writing Documentation
    • Documentation Style Guide
  • Meta and Miscellany
    • Design Philosophy
    • Glossary
    • Repository Examples

On this page

  • Learning Paths
    • First Full-Stack App
    • Customize the Pipeline
    • Multi-Tenant or Multi-Project Setup
  • Community
  1. next.dj /
  2. Getting Started /
  3. What to Read Next

What to Read Next¶

The tutorial covers the core flow. After Testing and Autoreload, read the topics, then the how-to guides, then the reference, then the internals when you need depth beyond the Notes walkthrough.

The hubs below replace long subsystem-by-subsystem lists.

  • Topic Guides explains each subsystem.

  • How-To Guides answers task-shaped questions.

  • API Reference lists modules, decorators, settings, and checks.

  • Internals traces pipelines under the hood.

  • Deployment and Security cover operations.

  • Repository Examples catalogues the repository examples/ projects with links and doc cross-references.

Learning Paths¶

First Full-Stack App¶

  1. Installation

  2. Building the First Page through Testing and Autoreload

  3. File Router

  4. Context and Dependency Injection

  5. Forms

  6. Static Assets

  7. Deployment Checklist

Customize the Pipeline¶

  1. Extending

  2. Static Backends

  3. Action Backends

  4. Signals

  5. Internals Overview

  6. Action Dispatch and Component Pipeline

  7. Add a Custom Template Loader

  8. Observe Framework Signals

Multi-Tenant or Multi-Project Setup¶

  1. Multi-Project Setup

  2. Share Components Across Projects

  3. Scope Requests Per Tenant

  4. Dependency Injection

  5. Production Settings

Community¶

Source code lives in the next.dj repository.

File an issue or open a discussion when something is unclear. Contributions to the documentation are welcome, see Contributing.

Previous
Testing and Autoreload
Next
Topic Guides