-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,33 @@ | ||
# Timeliner | ||
![logo](https://github.com/user-attachments/assets/d0b1aed7-217c-4d82-ac33-0cc39334b872) | ||
## Description | ||
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. | ||
## Dependencies | ||
- PHP >= 8.2 | ||
- Composer | ||
- Node.js | ||
## Local project startup | ||
1. Clone repository | ||
2. Generate the `.env` file by copying the `.env.example` file and configure it as needed (to execute in project root) | ||
``` | ||
cp .env.example .env | ||
``` | ||
4. Install dependencies | ||
``` | ||
composer install | ||
npm install | ||
``` | ||
5. Configure project (to execute in the workspace) | ||
``` | ||
php artisan key:generate | ||
php artisan migrate | ||
php artisan db:seed | ||
``` | ||
6. Start servers | ||
``` | ||
php artisan serve | ||
npm run dev | ||
``` |