Reference search
Results for "production"
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
Prepare for production
Before deploying, check environment values, document root, HTTPS/proxies, migrations, writable paths, logs, and generated frontend assets.
composer dump-autoload
composer generate-downloads
composer test
php coriander nodejs run build-prod
Project Guidance
Production Checklist
Production Checklist Use this checklist before deploying a CorianderPHP app. Environment Production should not use local debug settings: APP_ENV=production APP_DEBUG=0 APP_TIMEZONE...
Errors And Debugging
...the expected keys. For local debugging: APP_ENV=local APP_DEBUG=1 For production: APP_ENV=production APP_DEBUG=0 Database Connection Fails Check: DB_TYPEhost and portusername and p...
Database Patterns
...small single-server appstests MySQL is usually better for: multi-user production appslarger data volumemanaged hostingapplications with existing MySQL tooling Keep SQL portable whe...
Testing An App
... database when possible. SQLite is practical for fast local tests. If production uses MySQL-specific SQL, add at least one integration check against MySQL before release. Permissio...
Start Here
CLI Guide
...es: CORIANDER_UPDATER_ENABLED (1/0, default 1)CORIANDER_UPDATER_ALLOW_PRODUCTION (1 to allow in APP_ENV=production, default deny)CORIANDER_UPDATER_AUTH_TOKEN (shared token for guar...
Database Module Guide
...ntionally editing history.Keep migrations immutable in shared/staging/production environments. Error Handling DatabaseHandler logs warnings if required constants are missing, unsup...
Reference
Security Guide
...5)CORIANDER_UPDATER_ENABLED=0 (global disable)CORIANDER_UPDATER_ALLOW_PRODUCTION=1 (explicit production opt-in) Logging and Error Handling Runtime bootstrap and database initializa...
NodeJS Integration Guide
... Build All (development) php coriander nodejs run build-all Build for Production php coriander nodejs run build-prod This runs TypeScript compilation, minified JavaScript bundling,...
Environment Variables
...r shell environment variables are not overwritten by .env. This keeps production deployment variables in control while preserving a simple local developer workflow.