Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 766 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 766 Bytes

Instructions for running locally

To run a development server,

  1. Install Node.js and run
npm install

to install Node.js dependencies.

  1. Install Composer, the PHP package manager, and run
composer install

to install the necessary PHP packages.

  1. Update your local MySQL/MariaDB server's credentials in config.php and run schema.sql in your local MySQL/MariaDB server to create the database schema and integrate the database with the application.

  2. 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.