T-Caps is a project developed by students of the HE-Arc engineering school in Switzerland. The goal of this project is to create a web application that allows users to send message and document with the possibility to set an opening date and time. The message will be sent only when the opening date and time is reached.
- PHP 8.2.12 or higher
- Composer
- Node.js
- Tested with MariaDB 10.4.28 or higher
-
Clone the repository
-
Install the dependencies
composer install npm install
-
Create a
.env
file by copying the.env.example
file, and edit the configuration as neededcp .env.example .env
-
Generate the application key
php artisan key:generate
-
Migrate and seed the database
php artisan migrate:fresh --seed
-
Start the servers
php artisan serve npm run dev