Skip to content

IgorSilvestre/meetto

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

LiveKit Meeting (Bun + Next.js)

This app provides a simple online meeting experience powered by LiveKit.

Features:

  • Join or create rooms by entering a room name and username
  • Automatic camera and microphone publishing
  • Screen sharing
  • In-room chat
  • Shareable room URL: /room/{room}?name={username}

Prerequisites

Environment Variables

Create a .env.local file in the project root:

LIVEKIT_API_KEY=your_api_key
LIVEKIT_API_SECRET=your_api_secret
# Optional (defaults to ws://localhost:7880)
LIVEKIT_WS_URL=ws://localhost:7880

The backend API route at /api/token will mint an access token for a given room & username using these credentials.

Install & Run (Bun)

bun install
bun dev

Open http://localhost:3000

Usage

  1. On the home page, enter:
    • Room: any string (e.g., team-sync)
    • Username: your display name
  2. Click Join Room. You will be taken to /room/{room}?name={username} and connected to LiveKit.
  3. Share the room URL with others so they can join the same room with their own name.
  4. In-room controls allow toggling camera/mic, starting/stopping screen share, and chatting.

Notes

  • The token API requires LIVEKIT_API_KEY and LIVEKIT_API_SECRET to be set; these come from your LiveKit instance.
  • The Video/Audio, Screen Share, and Chat are provided by @livekit/components-react.
  • This project uses Bun; use bun install/dev/start instead of npm.

About

Boilerplate POC of LiveKit integration with docker compose handling video-server binary

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published