- Clone the repo. I have this project located in my 
Sitesdirectory. cdinto the directory and runnpm install.- After all of the dependencies have been installed run 
gulp. - All of the processes will run and should open a new browser tab to 
localhost:3000. - You're good to go.
 
db_credentials.php has been ignored. It should live in private/db_credentials and look like this:
<?php
    if ($server_name == $enviro_prod){
        define ("DB_SERVER", "000.000.000.000");
        define ("DB_USER", "YOUR NAME");
        define ("DB_PASS", "YOUR PASS");
        define ("DB_NAME", "YOUR DB NAME");
    } else {
        define ("DB_SERVER", "localhost");
        define ("DB_USER", "root");
        define ("DB_PASS", "root");
        define ("DB_NAME", "lorem_test_db");
    }
?>
- I'm currently using Node version 18 on my iMac to is to run gulp locally.
 - This codebase is a work in progress. I'm currently working on the 
userssection of the site. - This project uses Bootstrap 4.6.2 and jQuery 3.7.1.
 - I had to export the database from the production server and import it into my local iMac environment.
 - On my PC, I had to use 
ddev exec mysqldump -u root -proot kratecms > kratecms.sqlto export the database.