We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Devtools documentation

Hi, I'm starting a new project and I'm having difficulties to find info about devtools existing features. For instance : what are the 4 supported types (cli, micro, simple, modules) of the project command ?

$ ./phalcon.sh project

Phalcon DevTools (3.0.5)

Help:
  Creates a project

Usage:
  project [name] [type] [directory] [enable-webtools]

Arguments:
  help  Shows this help text

Example
  phalcon project store simple

Options:
 --name               Name of the new project
 --enable-webtools    Determines if webtools should be enabled [optional]
 --directory=s        Base path on which project will be created [optional]
 --type=s             Type of the application to be generated (cli, micro, simple, modules)
 --template-path=s    Specify a template path [optional]
 --use-config-ini     Use a ini file as configuration file [optional]
 --trace              Shows the trace of the framework in case of exception [optional]
 --help               Shows this help [optional]

Here is mainly about installing it : https://docs.phalcon.io/3.4/en/devtools-installation. Any lead about where to find further reading on the matter would be great.



32.2k
Accepted
answer

You can check this doc about usage

About the type is what kind of project you want create. cli, multi/single or micro

Good luck