emorec-project / mdd-recognition-app

1 stars 0 forks source link

MDD Recognition App

This application is composed of a FastAPI backend and a React.js frontend. This repository is split into two main directories: backend for FastAPI and frontend-ts for React.js.

Prerequisites

Backend Setup (FastAPI)

We use pip and a requirements.txt file for dependency management in the backend. Here's how you can set it up:

  1. Navigate to the backend directory: cd backend
  2. Install the required Python packages: pip install -r requirements.txt
  3. Run the FastAPI application using uvicorn: uvicorn server:app --reload

Frontend Setup (React.js)

We use npm for managing dependencies in the frontend. Here's how you can set it up:

  1. Navigate to the frontend-ts directory: cd frontend-ts
  2. Install dependencies using npm: npm install
  3. Start the React.js server: npm start

Libraries used

Backend

Frontend