Namviek

Namviek

Sign In

Online Meeting

Livekit is a open-source platform for Realtime service. It has a free tier plan for small team

For livekit user

For those who are familiar with livekit.io, configure your environment variables as follows:

# Server-side only
LIVEKIT_API_KEY=
LIVEKIT_API_SECRET=

# Both server and client
NEXT_PUBLIC_LIVEKIT_URL=

For newbie

  1. First, register a new account at livekit.io and create a new project.

  2. Go to Settings > Keys in your project dashboard to generate new API credentials.

  3. You'll receive three important values:

    • API Key
    • API Secret
    • WebSocket URL
  4. Configure your environment variables:

    • Set LIVEKIT_API_KEY and LIVEKIT_API_SECRET in your server environment only
    • Set NEXT_PUBLIC_LIVEKIT_URL in both server and client environments

⚠️ Important: Keep LIVEKIT_API_KEY and LIVEKIT_API_SECRET secure on your server side only. Never expose these in your frontend code.

Getting Started

Setup Guide

Integration

Backend deployment

Development Guide

Frontend deployment

Community