{"id":24599890,"url":"https://github.com/utkarsh5026/progchain","last_synced_at":"2026-04-11T04:33:37.327Z","repository":{"id":256488869,"uuid":"855461439","full_name":"utkarsh5026/ProgChain","owner":"utkarsh5026","description":"Explore programming concepts, prepare for interviews, and deepen your understanding of tech topics 🚀🚀","archived":false,"fork":false,"pushed_at":"2026-03-03T13:25:59.000Z","size":2875,"stargazers_count":1,"open_issues_count":15,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-03T16:36:56.387Z","etag":null,"topics":["client-server","fastapi","langchain","learning","llm","nodejs","python","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utkarsh5026.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-10T22:52:44.000Z","updated_at":"2026-03-03T13:24:58.000Z","dependencies_parsed_at":"2025-06-27T00:08:20.752Z","dependency_job_id":"739d17dd-7a79-4d3b-8bb4-01c78f7a5a7a","html_url":"https://github.com/utkarsh5026/ProgChain","commit_stats":null,"previous_names":["utkarsh5026/progchain"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/utkarsh5026/ProgChain","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FProgChain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FProgChain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FProgChain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FProgChain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utkarsh5026","download_url":"https://codeload.github.com/utkarsh5026/ProgChain/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkarsh5026%2FProgChain/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31669116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client-server","fastapi","langchain","learning","llm","nodejs","python","typescript"],"created_at":"2025-01-24T13:17:58.277Z","updated_at":"2026-04-11T04:33:37.315Z","avatar_url":"https://github.com/utkarsh5026.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n# 🚀 AI-Powered Learning Platform\r\n\r\nThis project is a comprehensive full-stack learning platform I've built to help users explore programming concepts, prepare for interviews, and deepen their understanding of tech topics. It combines a modern React frontend with a Python FastAPI backend, leveraging AI to provide personalized learning experiences.\r\n\r\n## 🧠 Core Features\r\n\r\n- **Interactive Concept Exploration**: Users can ask questions about programming topics and follow a guided learning path that branches based on their interests.\r\n- **Topic Learning Journeys**: The platform generates personalized learning paths for any programming concept, organized by difficulty level.\r\n- **Learning Threads**: Create structured multi-part learning content organized as sequential threads with interactive Q\u0026A.\r\n\r\n## 🏗️ Architecture Overview\r\n\r\nThe application is split into two main components:\r\n- A Python FastAPI backend that handles AI integration, file processing, and database operations\r\n- A React/TypeScript frontend that provides an intuitive user interface\r\n\r\n## 🐳 Running with Docker\r\n\r\nI've set up Docker to make deployment and development easy. Here's how to get started:\r\n\r\n### Prerequisites\r\n\r\n- Docker and Docker Compose installed on your system\r\n- A valid OpenAI API key for AI functionality\r\n\r\n### Setting Up Environment Variables\r\n\r\nBefore running the containers, create a `.env` file in the server directory with:\r\n\r\n```\r\nOPENAI_API_KEY=your_openai_api_key_here\r\n```\r\n\r\n### Starting the Development Environment\r\n\r\nFor development with hot-reloading:\r\n\r\n1. Navigate to the project root\r\n2. Run `docker-compose -f docker-compose.dev.yml up`\r\n3. The frontend will be available at http://localhost:3000\r\n4. The backend will be available at http://localhost:8000\r\n\r\n### Starting Production Environment\r\n\r\nFor production:\r\n\r\n1. Navigate to the project root\r\n2. Run `docker-compose up -d`\r\n3. The application will be available at http://localhost:80\r\n\r\n### Stopping the Containers\r\n\r\nTo stop the running containers:\r\n- For development: Press Ctrl+C in the terminal or run `docker-compose -f docker-compose.dev.yml down`\r\n- For production: Run `docker-compose down`\r\n\r\n### Container Maintenance\r\n\r\n- View logs: `docker-compose logs -f`\r\n- Rebuild containers after changes to Dockerfile: `docker-compose build`\r\n- Access container shell: `docker exec -it [container_name] bash`\r\n\r\n## 💡 Troubleshooting\r\n\r\n- If you encounter database issues, you may need to remove the volume: `docker-compose down -v`\r\n- For permission issues with the project files directory, check folder permissions\r\n- If the AI features aren't working, verify your OpenAI API key is correct and has sufficient credits\r\n\r\n## 🔮 Future Plans\r\n\r\nI'm planning to extend the platform with:\r\n\r\n- More interactive learning tools like quizzes and exercises\r\n- Collaborative features for team learning\r\n- Progress tracking and learning analytics\r\n- Support for more file types and learning resources\r\n- Mobile-friendly UI improvements\r\n\r\nThis project combines my passion for education, AI, and software development to create a tool that I hope will help people learn more effectively. I'm excited to continue improving it and adding new features!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarsh5026%2Fprogchain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futkarsh5026%2Fprogchain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkarsh5026%2Fprogchain/lists"}