A full-stack application in which user answers a series of question to find someone with the exact opposite qualities as them.
cd backend
python -m venv venvsource ./venv/bin/activate # if you are on linux
.\venv\Scripts\activate # if you are on windowspip install poetry
poetry installThen, create a .env file with the following parameters:
LLM_ENDPOINT="...."
EMAIL = "your_email@gmail.com"
PASSWORD = "your_app_password" <- gmail app password
FRONTEND_URL = "..." <- the frontend url. For instance, http://localhost:3000.
Note: The llm endpoint might take different parameters, adjust in the code as you see fit.
cd frontend
npm iThen, create a .env file with the following parameters:
BACKEND_URL="...."
APIKEY="..."