This is my config.ini file:
[database]
adapter     = Mysql
host        = localhost
username    = root
password    = 1234
dbname        = my_db
[application]
controllersDir  = ${PAPI_HOME_DIR}/app/controllers/
modelsDir       = ${PAPI_HOME_DIR}/app/models/
viewsDir        = ${PAPI_HOME_DIR}/app/views/
pluginsDir      = ${PAPI_HOME_DIR}/app/plugins/
libraryDir      = ${PAPI_HOME_DIR}/app/library/
cacheDir        = ${PAPI_HOME_DIR}/app/cache/
baseUri         = /
When I try to create a new model I got this error:
PHP Warning:  file_put_contents(/app/models/Ticker.php): failed to open stream: No such file or directory in /home/dima/Documents/phalcon-devtools/scripts/Phalcon/Builder/Model.php on line 624
How should I configure the config.ini file for phalcon devtools?