Installation
Follow these steps to install YADRMS:
-
Clone the Repository:
git clone https://github.com/isaaclins/YADRMS.git
cd YADRMS -
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
-
Frontend Setup:
- Navigate to the frontend directory:
cd frontend
- Install Node dependencies:
npm install
- Navigate to the frontend directory:
-
Configuration:
- See Configuration for details on setting environment variables and API keys.
-
Run the Application:
- Start the backend:
python backend/main.py
- In a separate terminal, start the frontend:
npm run dev
- Start the backend:
You should now have YADRMS running locally.