Concept Flow - API-only application setup
Run rails new with --api
Create minimal Rails app
Skip views, assets, helpers
Configure middleware for API
Generate controllers with API responses
Start server to serve JSON only
This flow shows how Rails creates a lightweight app focused on API, skipping UI parts and setting middleware for JSON responses.