- Navigate to the backend folder:
- cd backend
- Install required dependencies:
- pip install -r requirements.txt
-
Configure environment variables:
- Create a
.envfile in the backend directory- Here setup alphavantage api
- Example:
- Create a
- Create a config.py in backend/app directory
- Here setup gemini api
- Example
- Add your database connection details
- Run Qdrant database using Docker:
- docker run -p 6333:6333 -p 6334:6334 qdrant/qdrant
- Update your
.envfile with the Qdrant port configuration
- Start the backend server:
-
-
cd backend
-
python –m venv venv
-
.\vevn\Scripts\activate
-
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000
-
The backend will run on
localhost:8000 -
- Start the frontend:
-
Simply run the frontend through vscode live server
The frontend will be available at
localhost:5500
- Backend API: http://localhost:8000
- Frontend interface: http://localhost:5500

