Skip to content

OpenSourcePilot generates simple, step by step local setup guides for GitHub repositories and helps developers understand open issues clearly.

License

Notifications You must be signed in to change notification settings

Aryan1718/OpenSourcePilot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Setup Helper Project

This project is a setup helper application built with React and FastAPI.

Project Structure

  • client/: React Frontend (Vite + Tailwind CSS)
  • server/: Python FastAPI Backend
  • api/: Microservices (FastAPI)

Getting Started

Using Docker (Recommended)

To run the entire application stack:

docker-compose up --build

This will start:

Local Development (Manual)

Prerequisites

  • Node.js (v18+)
  • Python (v3.10+)

Client

cd client
npm install
npm run dev

Server

cd server
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload

LLM Service

cd api/llm_service
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload --port 8001

About

OpenSourcePilot generates simple, step by step local setup guides for GitHub repositories and helps developers understand open issues clearly.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published