Follow these steps to set up the project:
-
Clone the repository and navigate to the directory:
git clone git@github.com:Fabdoc27/Alcatraz.git cd Alcatraz
-
Install the dependencies:
composer install npm install
-
Create the environment file:
cp .env.example .env
-
Generate the application key:
php artisan key:generate
-
Run the database migrations:
php artisan migrate
-
Seed the database:
php artisan db:seed
-
Start the development server:
npm run dev php artisan serve