Skip to content

Latest commit

 

History

History
82 lines (48 loc) · 1.65 KB

how-to-run.md

File metadata and controls

82 lines (48 loc) · 1.65 KB

Work in progress

How to Run the Project

This document provides step-by-step instructions on how to set up and run the project locally.

Prerequisites

Before you begin, ensure you have the following installed on your machine:

  • Node.js: version v20.10.0 or later
  • npm or Yarn: version 3.2.1 or later
  • Make: version GNU Make 4.3 or later

Installation

  1. Clone the repository:

    git clone https://github.com/quinta-serie/sprint-review.git
  2. Navigate to the project directory:

    cd sprint-review
  3. Install dependencies:

    yarn install

Configuration

  1. Navigate to the client path:

    cd packages/client
  2. Create a .env file:

    Copy the .env.example file to .env:

    cp .env.example .env

    Update the environment variables in the .env file as needed.

    Note: to create your Firebase environment variables, consult the documentation.

Running the Project

  1. Start the development server:

    make run client start

    The project should now be running at http://localhost:3000.

Troubleshooting

  • Common Issue #1:

    Description: Brief explanation of the issue.

    Solution: Steps to resolve the issue.

  • Common Issue #2:

    Description: Brief explanation of the issue.

    Solution: Steps to resolve the issue.

Additional Resources