Skip to content
/ frt Public

The new website for BME Formula Racing Team

Notifications You must be signed in to change notification settings

kir-dev/frt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

375ba15 · Apr 8, 2025

History

29 Commits
Mar 27, 2025
Apr 8, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Mar 26, 2025
Apr 8, 2025
Mar 26, 2025
Mar 26, 2025
Apr 8, 2025

Repository files navigation

Project Setup Guide

This guide will help you set up the project locally.

Prerequisites

Ensure you have the following installed on your machine:

  • Node.js (v16 or higher)
  • Yarn (v1.22.22 or higher)
  • Docker

Installation Steps

  1. Clone the repository:

    git clone <repository-url>
  2. Install dependencies:

    yarn install
  3. Set up environment variables:

    • Copy the .env.example file to .env:

    • Update the .env file with your specific values if necessary.

  4. Start the PostgreSQL database using Docker:

    docker-compose up -d
  5. Run the development server:

    yarn dev

Additional Commands

  • Build the project:

    yarn build
  • Start the production server:

    yarn start
  • Lint the project:

    yarn lint

Notes

  • Ensure Docker is running before starting the development server.
  • The database connection string and other secrets are managed in the .env file.
  • The project uses Tailwind CSS for styling and Payload CMS for content management.