Skip to content

HE-Arc/T-Caps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9a21091 · Dec 19, 2024
Dec 15, 2024
Dec 19, 2024
Oct 15, 2024
Dec 14, 2024
Dec 14, 2024
Dec 14, 2024
Dec 18, 2024
Dec 19, 2024
Dec 16, 2024
Oct 15, 2024
Oct 22, 2024
Oct 15, 2024
Oct 24, 2024
Oct 15, 2024
Dec 18, 2024
Oct 15, 2024
Dec 19, 2024
Dec 15, 2024
Oct 15, 2024
Oct 22, 2024
Nov 18, 2024
Oct 22, 2024
Oct 22, 2024
Oct 15, 2024
Oct 22, 2024
Oct 22, 2024
Oct 22, 2024

Repository files navigation

Laravel Logo

About T-Caps

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.

Launch the project locally

Prerequisites

  • PHP 8.2.12 or higher
  • Composer
  • Node.js
  • Tested with MariaDB 10.4.28 or higher

How to start

  1. Clone the repository

  2. Install the dependencies

    composer install
    npm install
  3. Create a .env file by copying the .env.example file, and edit the configuration as needed

    cp .env.example .env
  4. Generate the application key

    php artisan key:generate
  5. Migrate and seed the database

    php artisan migrate:fresh --seed
  6. Link the storage

    php artisan storage:link
  7. Start the servers

    php artisan serve
    npm run dev