Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
address=5G1z7FiGqYMRfP6sifg8z2DTW4ifETPNukLkM9YQYmf4WwMx
address=5DPSqGAAy5ze1JGuSJb68fFPKbDmXhfMqoNSHLFnJgUNTPaU



Expand Down
41 changes: 41 additions & 0 deletions c-room/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
25 changes: 25 additions & 0 deletions c-room/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# C-Room 🧑‍💻📺

**C-Room** is your virtual dev space to instantly pair program, debug, and co-build with module owners or teammates—just like you're in the same room. With built-in video chat, screen share, and seamless collaboration tools, C-Room makes remote teamwork feel natural.

---

## 🚀 Features

- 🔗 **Instant Pairing** – Connect with devs on your team in seconds.
- 🎥 **Video & Audio Chat** – Talk through ideas face-to-face.
- 🖥️ **Screen Sharing** – Share your code, terminal, or browser.
- 🧠 **Context-Aware Matching** – Suggests collaborators based on module ownership or recent commits.
- 🧰 **Lightweight & Fast** – Optimized for smooth performance with minimal setup.
- 🛠️ **Tool Agnostic** – Works with any editor or workflow.

---

## 📦 Installation

```bash
git clone https://github.com/sentinelisking/c-room.git
cd c-room
npm install
npm run dev
```
7 changes: 7 additions & 0 deletions c-room/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading