A private skeleton for new projects based on PHP 8 and Phalcon 5
You can download this project here.
Unzip files to your docroot and make these permissions
chmod -R 777 cache
chmod -R 777 data
chmod -R 777 log
chmod 755 cli
chmod 755 schedulerMake a .env from .env.example and edit it
cp .env.example .env
vi .envRun composer to install dependencies
composer installRun phalcon migration to build the database
php ./vendor/bin/phalcon-migrations runRun npm build
npm init -y
npm install webpack webpack-cli --save-dev
npm run buildAdd scheduler to crontab
* * * * * user php /path/to/project/scheduler &> /dev/nullThat's all.
