git clone git@github.com:AntonioGuizar/TIProtec.git'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'tiprotec',
'DBDriver' => 'MySQLi',With your terminal go to the folder /back and run
composer install
php spark serveAfter that run to the folder /front and run
npm i
npm startAnd open in tour browser the link http://localhost:3000
Users GET all users
http://localhost:8080/usersGET user by id
http://localhost:8080/users/{id}POST create user
http://localhost:8080/usersPUT update user by id
http://localhost:8080/users/{id}DELETE user by id
http://localhost:8080/users/{id}