Quick Start¶
Always Source the Virtual Environment
Before running any Python or Invoke commands:
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¶
inv db.migrate # Run migrations (dev, default)
inv db.migrate.all # Run migrations for all environments
inv db.migrate.test # Run migrations for test environment
inv db.populate.all # Populate test data
inv db.populate.users # Populate users only
Docker Operations¶
inv docker.all.build # Build all images
inv docker.all.push # Push to registry
inv docker.all.pull # Pull latest images
Testing¶
inv test.setup # Full test environment setup
inv test.open # Cypress interactive mode
inv test.headless # Cypress headless mode
Updates¶
inv update.all # Update everything
inv update.git # Git pull only
inv update.npm # npm install only
inv update.python # Poetry install only
Available Invoke Tasks¶
Run inv --list to see all available tasks organized by namespace:
dev.*- Development commandsdocker.*- Docker operationsdb.*- Database operationstest.*- Testing commandsupdate.*- Dependency updatesversion.*- Version managementprod.*- Production commands