{"id":26150082,"url":"https://github.com/paritoshtripathi935/docsync","last_synced_at":"2026-04-24T13:03:38.310Z","repository":{"id":281374597,"uuid":"941210619","full_name":"paritoshtripathi935/DocSync","owner":"paritoshtripathi935","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-08T16:53:44.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-08T17:23:58.620Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paritoshtripathi935.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-03-01T18:49:16.000Z","updated_at":"2025-03-08T16:53:47.000Z","dependencies_parsed_at":"2025-03-08T17:34:16.417Z","dependency_job_id":null,"html_url":"https://github.com/paritoshtripathi935/DocSync","commit_stats":null,"previous_names":["paritoshtripathi935/docsync"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/paritoshtripathi935/DocSync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paritoshtripathi935%2FDocSync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paritoshtripathi935%2FDocSync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paritoshtripathi935%2FDocSync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paritoshtripathi935%2FDocSync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paritoshtripathi935","download_url":"https://codeload.github.com/paritoshtripathi935/DocSync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paritoshtripathi935%2FDocSync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32224413,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":"2025-03-11T05:52:49.378Z","updated_at":"2026-04-24T13:03:38.290Z","avatar_url":"https://github.com/paritoshtripathi935.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DocSync\n\nA real-time collaborative document editing system with conflict resolution and performance optimization\nbasically it will be obsidian with AI.\n\n## 🚀 Features\n\n- Real-time document collaboration using WebSocket\n- Document version control and conflict resolution\n- High-performance caching with Redis\n- Scalable message queue system using RabbitMQ\n- RESTful API endpoints for document CRUD operations\n- Authentication and authorization\n- Monitoring and performance metrics\n\n## 🛠️ Tech Stack\n\n- **Backend**: Python (FastAPI)\n- **Database**: MongoDB\n- **Caching**: Redis\n- **Message Queue**: RabbitMQ\n- **Frontend**: React + Vite\n\n## 🏗️ Project Structure\n\n```\nDocSync/\n├── backend/\n│   ├── src/\n│   │   ├── models/       # Pydantic models\n│   │   ├── routers/      # API endpoints\n│   │   ├── settings/     # Configuration\n│   │   └── utils/        # Helper functions\n│   ├── main.py          # Application entry point\n│   └── requirements.txt  # Python dependencies\n```\n\n## 🚦 Getting Started\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/yourusername/DocSync.git\n   cd DocSync\n   ```\n\n2. **Set up virtual environment**\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n3. **Install dependencies**\n   ```bash\n   pip install -r backend/requirements.txt\n   ```\n\n4. **Set up environment variables**\n   Create a `.env` file in the backend directory:\n   ```env\n   MONGODB_URI=mongodb://localhost:27017\n   REDIS_URL=redis://localhost:6379\n   RABBITMQ_URL=amqp://guest:guest@localhost:5672\n   ```\n\n5. **Run the application**\n   ```bash\n   cd backend\n   python main.py\n   ```\n\nThe server will start at `http://localhost:8000`\n\n## 📚 API Documentation\n\nOnce the server is running, visit:\n- Swagger UI: `http://localhost:8000/docs`\n- ReDoc: `http://localhost:8000/redoc`\n\n## 🧪 Running Tests\n\n```bash\npytest backend/tests\n```\n\n## 📦 Deployment\n\nThe application can be deployed using Docker:\n\n```bash\ndocker compose up -d\n```\n\n## 📜 License\n\nMIT License\n\n## 👥 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparitoshtripathi935%2Fdocsync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fparitoshtripathi935%2Fdocsync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fparitoshtripathi935%2Fdocsync/lists"}