mirror of
https://github.com/J3vb/OwnCord.git
synced 2026-09-03 03:50:00 +03:00
- docker-compose.yml: owncord + livekit/livekit-server on shared network - Secrets (API key/secret) injected via .env → OWNCORD_VOICE_* env vars - livekit.yaml.example: template config with port ranges and node_ip guidance - .env.example: secret template with min-length reminder for API secret - .gitignore: add .env / Server/.env to prevent accidental secret commits Users: cp .env.example .env && cp livekit.yaml.example livekit.yaml, fill in values, then docker compose up -d
74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
# Docker secrets
|
|
.env
|
|
Server/.env
|
|
|
|
# Claude Code local config
|
|
.claude/
|
|
Client/.claude/
|
|
Server/.claude/
|
|
CLAUDE.md
|
|
|
|
# GitHub Copilot instructions (internal)
|
|
.github/copilot-instructions.md
|
|
.github/instructions/
|
|
|
|
# Agent worktrees (Mission Control fleet isolation)
|
|
.worktrees/
|
|
|
|
# AI-specific / internal planning docs
|
|
docs/brain/
|
|
docs/CODEMAPS/
|
|
docs/designs/
|
|
docs/research/
|
|
docs/superpowers/
|
|
skills/
|
|
|
|
# Server runtime artifacts
|
|
Server/chatserver.exe
|
|
Server/chatserver.exe~
|
|
Server/owncord-server.exe
|
|
Server/server.exe
|
|
Server/config.yaml
|
|
Server/data/
|
|
|
|
# Test coverage artifacts
|
|
*.out
|
|
Server/cov.out
|
|
Server/cover.out
|
|
Server/coverage.out
|
|
Server/ws_cover.out
|
|
Server/ws_cov.out
|
|
|
|
# Client build artifacts
|
|
Client/publish/
|
|
Client/publish-single/
|
|
Client/publish-release/
|
|
|
|
# HTML mockups (large design reference files)
|
|
Client/login-mockup.html
|
|
Client/ui-mockup.html
|
|
|
|
# Tauri typegen (auto-generated IPC bindings)
|
|
Client/tauri-client/src/generated/
|
|
.typecache
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# AI tooling
|
|
.gstack/
|
|
.claude-flow/
|
|
.mcp.json
|
|
.superpowers/
|
|
|
|
# Internal dev tools
|
|
tools/
|
|
.cache/
|
|
|
|
# Internal dev files
|
|
SKILL.md
|
|
TODOS.md
|
|
CLAUDE.md
|
|
DESIGN.md
|
|
Client/CLIENT-REVIEW.md
|