Quick Start¶
No Manual Venv Activation Needed
Just commands automatically activate the correct virtual environment.
Development Mode¶
Start the full development stack with hot reloading:
This starts:
- Frontend dev server with hot reload
- Backend Django server
- Redis cache
- Nginx reverse proxy
Access the application at https://localhost
Common Commands¶
Start Development¶
Database Operations¶
just db::run-migrate # Run migrations (dev, default)
just db::migrate::all # Run migrations for all environments
just db::migrate::test # Run migrations for test environment
just db::populate::all # Populate test data
Docker Operations¶
just docker::all-build # Build all images
just docker::all-push # Push to registry
just docker::all-pull # Pull latest images
Testing¶
just test::setup # Full test environment setup
just test::pw::ui # Playwright interactive UI mode
just test::pw::headless # Playwright headless mode
Updates¶
Available Just Commands¶
Run just --list --list-submodules to see all available commands organized by namespace:
dev::*- Development commandsdocker::*- Docker operationsdb::*- Database operationstest::*- Testing commandsupdate::*- Dependency updatesversion::*- Version managementprod::*- Production commands