- MySQL server
- php7 (with mysqli)
- npm version >= 6.4.1
- node version >= 10.8.0
The following are instruction to test this app locally:
- Clone the repo
npm installit- Make sure you have PHP version 7
- Create a MySQL database with any name you'd like
- Update the
config.phpfile on this repo to reflect the credentials and info for accessing the database. Specifically the user, database name, and user password. - Run the
db.sqlscript in theserverfolder to create the necessary tables and populate them with some data:sudo mysql -u <username> -p < db.sql - Run
npm start