{"id":41739985,"url":"https://github.com/codeacula/orchid","last_synced_at":"2026-01-25T00:12:06.196Z","repository":{"id":318219136,"uuid":"1070390920","full_name":"codeacula/orchid","owner":"codeacula","description":"Codeacula's AI/LLM App","archived":false,"fork":false,"pushed_at":"2025-10-05T20:39:37.000Z","size":14,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-05T22:21:20.154Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/codeacula.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":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-05T20:33:47.000Z","updated_at":"2025-10-05T20:33:51.000Z","dependencies_parsed_at":"2025-10-05T22:21:21.607Z","dependency_job_id":"f9afcc48-58fe-46b3-ad4a-e1031a2fa6c0","html_url":"https://github.com/codeacula/orchid","commit_stats":null,"previous_names":["codeacula/orchid"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codeacula/orchid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeacula%2Forchid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeacula%2Forchid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeacula%2Forchid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeacula%2Forchid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeacula","download_url":"https://codeload.github.com/codeacula/orchid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeacula%2Forchid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739394,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-25T00:12:05.488Z","updated_at":"2026-01-25T00:12:06.184Z","avatar_url":"https://github.com/codeacula.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Orchid 🌸\n\nA personal AI Chat/Agent UI, built as a SPA/PWA with a .NET 9 backend and a Vue.js 3 frontend, fully containerized with Docker.\n\n## 🚀 Overview\n\nOrchid is a modern, containerized application that provides an intuitive interface for interacting with AI/LLM services. The project combines the power of .NET 9 for backend services with the flexibility of Vue.js 3 for a responsive, progressive web application frontend.\n\n## ✨ Features\n\n- **Personal AI Chat**: Intuitive chat interface for AI interactions\n- **Progressive Web App**: Works offline and can be installed on devices\n- **Fully Containerized**: Easy deployment with Docker and Docker Compose\n- **Modern Tech Stack**: .NET 9 backend with Vue.js 3 frontend\n- **Scalable Architecture**: Clean separation of concerns with documented decisions\n\n## 🗂️ Core File Structure\n\n```\norchid/\n├── docs/              # Project documentation, including ADRs\n│   └── adr/           # Architecture Decision Records\n├── src/               # All C# and Vue.js source code\n│   ├── Backend/       # .NET 9 backend API\n│   └── Frontend/      # Vue.js 3 frontend SPA/PWA\n├── tests/             # All test projects\n│   ├── Backend.Tests/\n│   └── Frontend.Tests/\n├── .editorconfig      # Enforces consistent code style\n├── docker-compose.yml # Defines the local development environment\n├── README.md          # This file\n└── CONTRIBUTING.md    # Contribution guidelines\n```\n\n## 🛠️ Getting Started\n\n### Prerequisites\n\n- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)\n- [Node.js](https://nodejs.org/) (LTS version recommended)\n- [Docker](https://www.docker.com/get-started) and Docker Compose\n\n### Quick Start with Docker Compose\n\nThe easiest way to run Orchid locally is using Docker Compose:\n\n```bash\n# Clone the repository\ngit clone https://github.com/codeacula/orchid.git\ncd orchid\n\n# Start the application\ndocker-compose up\n```\n\nThe application will be available at:\n- Frontend: http://localhost:8080\n- Backend API: http://localhost:5000\n\n### Development Setup\n\n#### Backend\n\n```bash\ncd src/Backend\ndotnet restore\ndotnet build\ndotnet run\n```\n\n#### Frontend\n\n```bash\ncd src/Frontend\nnpm install\nnpm run dev\n```\n\n### Running Tests\n\n#### Backend Tests\n```bash\ncd tests/Backend.Tests\ndotnet test\n```\n\n#### Frontend Tests\n```bash\ncd tests/Frontend.Tests\nnpm test\n```\n\n## 📚 Documentation\n\n- [Contributing Guidelines](CONTRIBUTING.md)\n- [Architecture Decision Records](docs/adr/)\n- [License](LICENSE)\n\n## 🤝 Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on how to get started.\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\nBuilt with ❤️ by [Codeacula](https://github.com/codeacula)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeacula%2Forchid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodeacula%2Forchid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodeacula%2Forchid/lists"}