CodeBhejo — Code Sharing & P2P File Transfer

CodeBhejo is an open-source code sharing and collaboration tool for developers. Instantly create and share code snippets with your team through a web editor, or transfer files peer-to-peer directly from the terminal. Features Monaco Editor — The same editor that powers VS Code, with syntax highlighting across all major languages Passwordless auth — Email-based magic link login via AWS SES, no password required P2P file transfer — A Go CLI tool (codebhejo) that transfers files directly between machines over WebRTC; the backend acts only as a signaling server via Socket.IO, so file data never touches the server S3-backed storage — File content stored on S3 (or any S3-compatible provider like Hetzner), metadata in MySQL Tech Stack Layer Technology Frontend Vue 3, Vite, Pinia, Monaco Editor Backend Node.js, Express, Knex.js Database MySQL Storage AWS S3 / Hetzner Object Storage Email AWS SES (passwordless login) CLI Go (Cobra, WebRTC) P2P Signaling Socket.IO + WebRTC CLI Usage Install the CLI and send files peer-to-peer: ...

April 9, 2026 · 1 min · 204 words · Govind yadav

Full CI/CD pipeline of Laravel application with GitOps

Why CI/CD is essential ? CI/CD ( Continuous Integration and Continuous Deployment/Delivery ) is a cornerstone of modern software development, enabling teams to deliver high-quality applications faster and more reliably. By automating the build, test and deployment processes, CI/CD pipelines eliminate manual errors, provide rapid feedback on code changes, and ensure that every new feature or bug fix is thoroughly vetted before reaching users. This not only accelerates the development lifecycle but also fosters a culture of collaboration and continuous improvement, allowing developers to focus on writing code while the pipeline handles the rest. ...

September 6, 2025 · 11 min · 2171 words · Govind yadav