Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.05 KB

README.md

File metadata and controls

39 lines (24 loc) · 1.05 KB

Warehouse_system@WrappedOlws

Execution instructions

Install the necessary tools

  • Composer - Dependency Manager

  • PHP - programming Language

Download the project from the GitHub repository (Must have git installed)

git clone https://github.com/Jictyvoo/Warehouse.system_WrappedOwls.git

Copy the .env.example file to .env

Within the project directory, execute the commands

 composer install 
 php artisan key:generate

If you are using MySQL, run the following command as the root user of the database

DROP DATABASE IF EXISTS warehouse_system__wrappedowls;
CREATE DATABASE warehouse_system__wrappedowls;
CREATE USER IF NOT EXISTS 'user'@'localhost' IDENTIFIED BY 'sqlpassword';
GRANT ALL PRIVILEGES ON warehouse_system__wrappedowls.* To 'user'@'localhost' IDENTIFIED BY 'sqlpassword';

Then run the following command on the terminal

php artisan migrate:fresh --seed

Run the server

 php artisan serve