Reference search
Results for "cli help"
Search results focus on framework reference pages. Open a result when you need the full explanation, or use the quick answer below when it matches what you are trying to build.
Quick answer
Find CLI command help
Use the short CLI overview, detailed help, or focused help for command families like make, nodejs, and migrate.
php coriander
php coriander help
php coriander help make
php coriander nodejs --help
Start Here
CLI Guide
CLI Guide CorianderPHP provides a command-line interface accessible via php coriander for scaffolding, maintenance, and framework updates. Usage Invoke commands from the project ro...
Database Module Guide
...and exposes helper methods via SQLManager. Creating Configuration via CLI Generate a database configuration interactively: php coriander make:database The command prompts for MySQL...
Controller Guide
... API endpoints). Creating a Controller Generate a controller with the CLI: php coriander make:controller Blog # or create an API controller php coriander make:controller Blog --api...
Dynamic View Guide
...ed variables. Step 1: Create The View Folder Create the view with the CLI: php coriander make:view articles/show This creates: public/ public_views/ articles/ show/ index.php metad...
Static View Guide
... and simple content pages. Create The View Generate the view with the CLI: php coriander make:view about This creates: public/ public_views/ about/ index.php metadata.php For a nor...
Project Guidance
Database Patterns
...atabase Patterns The database API gives you two useful levels: simple helpers for common CRUD, and sqlScript() for readable custom SQL. Recommended Decision Use migrations for sche...
Request Lifecycle
... and the response a user receives. Lifecycle Overview 1Browser or API clientSends the HTTP request.2Front controllerpublic/index.php loads the app and starts dispatch.3BootstrapFra...
Recommended App Architecture
...es: persistence logicpermission decisionsvalidation rulesexternal API clientsimport/export servicesdomain-specific write workflows Do not add a module only to wrap one line. Start ...
Reference
Sitemap Guide
...enerating the Sitemap Script Create the public/sitemap.php helper via CLI: php coriander make:sitemap The generated script rebuilds sitemap.xml when missing or outdated and serves ...
Assets And Images
... attributes are ignored, including event-handler attributes such as onclick, and generated source attributes such as src and srcset. Public URL Prefix If your web server serves the...
NodeJS Integration Guide
...sions. Do not rely on internal paths such as node_modules\npm\bin\npm-cli.js for normal setup checks. Instead, verify that npm -v works and that where.exe npm or Get-Command npm -A...
Security Guide
...ut via API_TIMEOUT_SECONDS (default: 15). SQL Safety Prefer map-based helpers for common conditions:findWhereupdateWheredeleteWhereRaw-string condition methods remain available for...