music-assistant-server
935 B•GITIGNORE
.gitignore
935 B • 47 lines • plaintext
1
2*.db
3*.pyc
4music_assistant/config.json
5*.cert
6*.pem
7music_assistant/testrun.sh
8build/
9dist/
10venv/
11
12# Provider binaries downloaded for local development must not be committed.
13music_assistant/providers/airplay/bin/*
14!music_assistant/providers/airplay/bin/README.md
15# Linux shairport-sync is built in the base image; only the macOS dev binary is bundled.
16music_assistant/providers/airplay_receiver/bin/shairport-sync-linux-*
17
18# Bundled app credentials - injected at build time, or a maintainer's local copy. Never commit.
19music_assistant/helpers/app_secrets.json
20app_vars.json
21
22# Widevine CDM client files - fetched by CI for the base image build, or a maintainer's local copy.
23widevine_cdm/
24.venv
25.venv*
26.mypy_cache/
27.tox/
28*.egg-info/
29*.spec
30.history
31.idea
32.coverage
33uv.lock
34/.claude/*
35!/.claude/skills
36!/.claude/skills/**
37.DS_Store
38docs/superpowers
39
40# Devenv
41.devenv*
42devenv.local.nix
43devenv.local.yaml
44
45# VS Code
46.vscode/launch.json
47