Skip to content

Commit 98ff8c5

Browse files
authored
Initial commit
0 parents  commit 98ff8c5

File tree

86 files changed

+10465
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+10465
-0
lines changed

.env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Enviroment variables needed to connect to the LiveKit server.
2+
LIVEKIT_API_KEY=<your_api_key>
3+
LIVEKIT_API_SECRET=<your_api_secret>
4+
LIVEKIT_URL=wss://<project-subdomain>.livekit.cloud
5+
6+
# Internally used environment variables
7+
NEXT_PUBLIC_CONN_DETAILS_ENDPOINT=http://localhost:3000/api/connection-details
8+
# NEXT_PUBLIC_APP_CONFIG_ENDPOINT=

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals", "next/typescript", "prettier"]
3+
}

.github/assets/app-icon.png

8.35 KB
Loading
43 KB
Loading
53.9 KB
Loading
21.7 KB
Loading
28.1 KB
Loading
Lines changed: 72 additions & 0 deletions
Loading
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Lint and Build
2+
permissions:
3+
contents: read
4+
pull-requests: read
5+
on:
6+
push:
7+
branches: [main]
8+
pull_request:
9+
branches: [main]
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: pnpm/action-setup@v4
17+
- name: Use Node.js 22
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 22
21+
cache: 'pnpm'
22+
23+
- name: Install dependencies
24+
run: pnpm install
25+
26+
- name: ESLint
27+
run: pnpm lint
28+
29+
- name: Prettier
30+
run: pnpm format:check
31+
32+
- name: Ensure build succeeds
33+
run: pnpm build
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# .github/workflows/sync-to-production.yaml
2+
name: Sync main to sandbox-production
3+
4+
on:
5+
workflow_dispatch:
6+
7+
jobs:
8+
sync:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
steps:
13+
- uses: livekit-examples/sandbox-deploy-action@v1
14+
with:
15+
production_branch: 'sandbox-production'
16+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)