-
-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Alexa Amundson edited this page Nov 17, 2025
·
1 revision
This guide provides steps to set up and run BlackRoad OS locally.
- Python 3.10+ installed on your system.
- Node.js and npm for building any frontend assets.
- Git for cloning the repository.
- Clone the repository using git:
git clone https://github.com/blackboxprogramming/BlackRoad-Operating-System.git - Navigate to the project directory:
cd BlackRoad-Operating-System - Install Python dependencies:
pip install -r requirements.txt - Copy or create a
.envfile and set required environment variables (API keys, database URLs, etc.).
- Start the FastAPI server using Uvicorn:
uvicorn backend.main:app --reload - The API will be available at
http://localhost:8000.
- Open the
index.htmlfile in your browser or run the frontend dev server if available. - The desktop UI connects to the backend API running locally.
Refer to the INTEGRATION_GUIDE.md in the docs folder for details on configuring third‑party services.