Video Series#
This page gathers the Flask-Commands video course in documentation order while also giving each major topic area its own home in the docs navigation.
Watch the Series in Order#
Start here if you want the closest thing to a full playlist. This page follows the documentation from the welcome material through installation, project setup, generators, nested resources, and architecture choices.
The takeaway is the full course flow: what Flask-Commands is for, how to get it running, how to build with it, and how the later structure decisions fit together.
Welcome and Setup Videos#
Here you will find the orientation material, installation steps, project creation flow, and the core ideas readers should understand before the deeper generator chapters.
The takeaway is the foundation: what the tool does, how to install it cleanly, how to start a project safely, and which naming and routing ideas make the rest of the docs easier to understand.
New Project Videos#
This page follows the flask new workflow on its own, from creating a fresh
application through inspecting the scaffold, choosing the no-database option,
and running the generated project locally.
The takeaway is the project creation flow: how to get from an empty folder to a running Flask app that is ready for the generator chapters.
make:view Videos#
These videos follow the page-first workflow, including basic view generation, smarter prompts and normalization, first resource-building, and nested view work.
The takeaway is the page-first scaffolding: how to generate templates and routes quickly, when the prompts are helping you, and how nested view structure grows without turning into guesswork.
make:controller Videos#
That group follows the controller-first workflow, from simple controller creation through RESTful scaffolding, controller-driven model generation, and structure choices.
The takeaway is the controller-first thinking: when to start from the behavior
layer, how the --crud flag expands a resource, and how model creation can be
pulled into that same workflow.
make:model Videos#
This page follows the model-first workflow, covering basic model generation, RESTful scaffolding from a model, and the flat-vs-nested choice when generating structure.
The takeaway is the data-first scaffolding: how to start from the model, how that decision pushes outward into routes and controllers, and when that workflow makes more sense than starting from views or controllers.