Commands
Run checksβ
This is the command that runs checks that are due.
Use it with the --all
flag to force all checks to run, even if they're not due yet.
php artisan appkeep:run
+---------------------+---------+--------------------------------------------------------------+
| Check | Outcome | Message |
+---------------------+---------+--------------------------------------------------------------+
| ProductionModeCheck | π¨ | APP_DEBUG is true. Always turn off debug mode in production! |
| StorageCheck | β
OK | |
| DatabaseCheck | β
OK | |
| CacheCheck | π¨ | Connection refused |
| DiskUsageCheck | β οΈ | Your disk is getting full! |
| OptimizationCheck | β οΈ | Missing optimizations: Routes, Config, Events |
+---------------------+---------+--------------------------------------------------------------+
If your APPKEEP_KEY
Β is set, the command will also submit the results to App:keep servers.
List all checksβ
Run this command to see a complete list of configured checks.
php artisan appkeep:list
# +----------------+------------+
# | Check | Expression |
# +----------------+------------+
# | DatabaseCheck | * * * * * |
# | DiskUsageCheck | * * * * * |
# +----------------+------------+