Skip to content

A private skeleton for new projects based on PHP 8 and Phalcon 5

Notifications You must be signed in to change notification settings

notesz/phalcon5-skeleton

Repository files navigation

phalcon5-skeleton

phalcon5-skeleton

A private skeleton for new projects based on PHP 8 and Phalcon 5

Install

You can download this project here.
Unzip files to your docroot and make these permissions

chmod -R 777 cache
chmod -R 777 data
chmod 755 cli
chmod 755 scheduler

Make a .env from .env.example and edit it

cp .env.example .env
vi .env

Run composer to install dependencies

composer install

Run phalcon migration to build the database

php ./vendor/bin/phalcon-migrations run

Run npm build

npm init -y
npm install webpack webpack-cli --save-dev
npm run build

That's all.