65 lines
568 B
Plaintext
65 lines
568 B
Plaintext
# Raspberry Pi RT Audio Mixer — .gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
/build/*
|
|
!/build/.gitkeep
|
|
*.egg
|
|
.eggs/
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# C/C++
|
|
*.o
|
|
*.obj
|
|
*.a
|
|
*.la
|
|
*.lo
|
|
*.dll
|
|
*.dylib
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# Kernel build artifacts
|
|
*.ko
|
|
*.mod.c
|
|
*.mod
|
|
modules.order
|
|
Module.symvers
|
|
.tmp_versions/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
*.log
|
|
|
|
# Credentials (never commit)
|
|
.git-credentials
|
|
*gitea-creds*
|
|
|
|
# Cross-compilation
|
|
toolchains/
|
|
sysroot/
|
|
|
|
# Package files
|
|
*.deb
|
|
*.rpm
|
|
*.tar.gz
|
|
*.tar.xz
|