You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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';