Conntour Space Explorer – Home Assignment Navigate to the backend directory: cd backend Create and activate virtual environment using uv: uv venv source .venv/bin/activate # On Unix/MacOS # OR .venv\Scripts\activate # On Windows Install dependencies using uv: uv pip install -r requirements.txt Run the FastAPI server with Uvicorn: uvicorn app:app --reload --port 8000 Frontend Setup Navigate to the frontend directory: cd frontend Install dependencies: npm install Start the development server: npm run dev The frontend will run on http://localhost:5173