adding the ui
This commit is contained in:
parent
14445e7242
commit
eaeac63ef3
12 changed files with 2638 additions and 0 deletions
66
.gitignore
vendored
Normal file
66
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# Audio/video files
|
||||
*.opus
|
||||
*.ogg
|
||||
*.mp3
|
||||
*.wav
|
||||
*.m4a
|
||||
*.flac
|
||||
*.webm
|
||||
|
||||
# Data files
|
||||
*.db
|
||||
*.db-journal
|
||||
*.pkl
|
||||
*.csv
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
.venv/
|
||||
venv/
|
||||
*.egg-info/
|
||||
|
||||
# Nix
|
||||
result
|
||||
result-*
|
||||
|
||||
# Keys (NEVER commit)
|
||||
*.key
|
||||
keys/
|
||||
API_KEY.txt
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.kate-swp
|
||||
*.swp
|
||||
|
||||
# Build artifacts
|
||||
build/
|
||||
.gradle/
|
||||
*.apk
|
||||
*.aab
|
||||
|
||||
# Android SDK (huge)
|
||||
android_studio_install_path/
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Test recordings
|
||||
test_recordings/
|
||||
recordings/
|
||||
|
||||
# Temporary
|
||||
*.tmp
|
||||
*.temp
|
||||
.temp/
|
||||
|
||||
# Lock files (optional - uncomment if you want to track these)
|
||||
# uv.lock
|
||||
# flake.lock
|
||||
Loading…
Add table
Add a link
Reference in a new issue