Project created for the HE-Arc autumn semester web app course (3251.3 Développement web I). The goal is to create a web application using the Laravel framework, allowing an user to create various timelines and then share them with others.
- PHP >= 8.2
- Composer
- Node.js
-
Clone repository
-
Generate the
.envfile by copying the.env.examplefile and configure it as needed (to execute in project root)cp .env.example .env -
Install dependencies
composer install npm install -
Configure project (to execute in the workspace)
php artisan key:generate php artisan migrate php artisan db:seed -
Start servers
php artisan serve npm run dev -
Access website on the following URL: http://localhost:8000