Skip to main content

Installation

Follow these steps to install YADRMS:

  1. Clone the Repository:

    git clone https://github.com/isaaclins/YADRMS.git
    cd YADRMS
  2. Backend Setup:

    • Ensure you have Python 3.8+ installed.
    • Create a virtual environment and install dependencies:
      python -m venv venv
      source venv/bin/activate # On Windows use `venv\Scripts\activate`
      pip install -r backend/requirements.txt
  3. Frontend Setup:

    • Navigate to the frontend directory:
      cd frontend
    • Install Node dependencies:
      npm install
  4. Configuration:

    • See Configuration for details on setting environment variables and API keys.
  5. Run the Application:

    • Start the backend:
      python backend/main.py
    • In a separate terminal, start the frontend:
      npm run dev

You should now have YADRMS running locally.