Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
katsulon authored Nov 18, 2024
1 parent d2155d7 commit 1121e3d
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion README.md
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
```

0 comments on commit 1121e3d

Please sign in to comment.