Skip to content

Commit 4c07190

Browse files
committed
npm audits and codeowners
1 parent 3295513 commit 4c07190

5 files changed

Lines changed: 48 additions & 9 deletions

File tree

.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Moss Project Credentials
2+
MOSS_PROJECT_ID=your_project_id_here
3+
MOSS_PROJECT_KEY=your_project_key_here
4+
5+
# LiveKit (if using pipecat-moss or livekit example)
6+
LIVEKIT_API_KEY=your_livekit_key
7+
LIVEKIT_API_SECRET=your_livekit_secret
8+
LIVEKIT_URL=your_livekit_url
9+
10+
# OpenAI (if using custom embeddings or agents)
11+
OPENAI_API_KEY=your_openai_key

.github/CODEOWNERS

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file defines who owns which parts of the repository.
2+
# Code owners are automatically requested for review when someone opens a pull request.
3+
4+
# Default owner for everything
5+
* @HarshaNalluru @yatharthk2 @r4ghu
6+
7+
# JavaScript/TypeScript SDKs and samples
8+
/javascript/ @HarshaNalluru @yatharthk2 @r4ghu
9+
/next-js/ @HarshaNalluru @yatharthk2 @r4ghu
10+
/moss/ @HarshaNalluru @yatharthk2 @r4ghu
11+
12+
# Python SDK and samples
13+
/python/ @HarshaNalluru @yatharthk2 @r4ghu
14+
/cookbook/ @HarshaNalluru @yatharthk2 @r4ghu
15+
16+
# CI/CD Workflows
17+
/.github/ @HarshaNalluru @yatharthk2 @r4ghu

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
.mypy_cache
22
.ruff_cache
33
.DS_Store
4-
__pycache__
4+
__pycache__
5+
node_modules/
6+
.env
7+
.env.local
8+
dist/
9+
.next/
10+
coverage/
11+
.venv/
12+
env/
13+
venv/
14+
*.log

javascript/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

next-js/package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)