Phalcon: Web DevTools

Enable Phalcon Web DevTools via Phalcon CLI
- When create new project:
phalcon project [project-name] --enable-webtools
- When we have existing project:
phalcon webtools --action=enable
Access it on your browser: http://domain/phalcon-app/webtools.php
Few things to take note:
- Make sure your
config.php
exist in one of the following directory:[project-name]/config
[project-name]/app/config
[project-name]/apps/frontend/config
- Create an app/migrations in
[project-name]/public
folder.
p/s: Please ensure to have .phalcon folder in each project, else Phalcon won’t recognize the app is built with Phalcon.