To run a development server,
- Install Node.js and run
npm install
to install Node.js dependencies.
- Install Composer, the PHP package manager, and run
composer install
to install the necessary PHP packages.
-
Update your local MySQL/MariaDB server's credentials in
config.php
and runschema.sql
in your local MySQL/MariaDB server to create the database schema and integrate the database with the application. -
To start a PHP server, assuming PHP is in
PATH
, run the following from the project root:
php -S localhost:8888 -t public
If the port 8888 is in use, replace it with another port number.