Notes: - notes table with TEXT/AUDIO types, category support - Audio upload → OpenRouter Gemini STT → OCI GenAI polish/summary - Raw STT saved separately in raw_content column - Polish/summary button for manual re-processing - Async processing with real-time polling Voice Clone TTS: - Qwen3-TTS 1.7B model on A10 GPU via FastAPI server - Voice profile registration (record/upload → save embedding) - Profile-based TTS generation API - TTS web page with recording, profile management, generation Auth fixes: - Store both access + refresh tokens in localStorage - Initialize state from localStorage synchronously (no flash) - Request interceptor reads token from localStorage every request - Refresh via body (not just cookie) Other fixes: - maxTokens 4096 → 65536 (OCI GenAI Gemini supports up to 65536) - Fix broken Korean chars in source files - OpenRouter config for STT - ffmpeg installed for audio conversion - Ollama + Gemma 4 E4B installed (STT fallback) - nginx proxy for TTS server (/api/tts/) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
74 lines
979 B
Plaintext
74 lines
979 B
Plaintext
# ========================
|
|
# Environment / Secrets
|
|
# ========================
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# ========================
|
|
# Java / Maven (Backend)
|
|
# ========================
|
|
target/
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
*.log
|
|
hs_err_pid*
|
|
|
|
# Maven wrapper
|
|
.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# ========================
|
|
# Node.js (Frontend)
|
|
# ========================
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
build/
|
|
dist/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# ========================
|
|
# IDE
|
|
# ========================
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ========================
|
|
# OS
|
|
# ========================
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ========================
|
|
# OCI / Cloud credentials
|
|
# ========================
|
|
.oci/
|
|
Wallet_*/
|
|
*.pem
|
|
*.key
|
|
|
|
# ========================
|
|
# Docker
|
|
# ========================
|
|
oracle_data/
|
|
|
|
# ========================
|
|
# Claude Code
|
|
# ========================
|
|
.claude/
|
|
cookies.txt
|
|
audio-uploads/
|
|
voice-profiles/
|
|
*.wav
|