import React from "react"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { Terminal } from "lucide-react"; import { useApi } from "@/contexts/ApiContext"; interface UsageInstructionsModalProps { open: boolean; onOpenChange: (open: boolean) => void; } const UsageInstructionsModal: React.FC = ({ open, onOpenChange, }) => { const { baseUrl } = useApi(); return ( Getting Started with LeLab Quick setup guide to get LeLab running on your machine.

1. Installation

Install LeLab directly from GitHub (virtual environment recommended):

              
                pip install git+https://github.com/nicolas-rabault/leLab
              
            

💡 Tip: Create a virtual environment first with{" "} python -m venv .venv

2. Running LeLab

After installation, start LeLab with:

              lelab
            

This will start the FastAPI backend server on{" "} {baseUrl}

3. Additional Commands

lelab-fullstack

Starts both backend and frontend development servers

lelab-frontend

Starts only the frontend development server

For detailed documentation, visit the{" "} LeLab GitHub repository

); }; export default UsageInstructionsModal;