git clone https://github.com/lavaman131/jarvis.git
https://elephas.app/blog/how-to-create-openai-api-keys-cl5c4f21d281431po7k8fgyol0
echo "OPENAI_API_KEY={Put Your API Key Here}" > backend/app/.env
- Go to the backend folder:
cd backend
- Create virtual environment and install 🐍 Python dependencies:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Initialize the backend server:
cd app
uvicorn api:app --host 0.0.0.0 --port 8080
- Go to the frontend folder:
cd frontend
- Install npm dependencies:
npm i
- Initialize frontend:
npm run dev