105 lines
1.5 KiB
Plaintext
105 lines
1.5 KiB
Plaintext
# The directory Mix will write compiled artifacts to.
|
|
/_build/
|
|
|
|
# If you run "mix test --cover", coverage assets end up here.
|
|
/cover/
|
|
|
|
# The directory Mix downloads your dependencies sources to.
|
|
/deps/
|
|
|
|
# Where third-party dependencies like ExDoc output generated docs.
|
|
/doc/
|
|
|
|
# If the VM crashes, it generates a dump, let's ignore it too.
|
|
erl_crash.dump
|
|
|
|
# Also ignore archive artifacts (built via "mix archive.build").
|
|
*.ez
|
|
|
|
# Ignore package tarball (built via "mix hex.build").
|
|
agent_coordinator-*.tar
|
|
|
|
# Temporary files, for example, from tests.
|
|
/tmp/
|
|
|
|
# IDE and Editor files
|
|
/.vscode/
|
|
!/.vscode/mcp.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
.vimrc
|
|
.vim/
|
|
|
|
# OS generated files
|
|
Thumbs.db
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
/tmp/nats.log
|
|
/tmp/nats.pid
|
|
firebase-debug.log
|
|
|
|
# Environment and configuration files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
config/dev.secret.exs
|
|
config/prod.secret.exs
|
|
|
|
# Development and testing artifacts
|
|
*.beam
|
|
*.plt
|
|
*.dialyzer_plt
|
|
dialyzer_plt
|
|
dialyzer.plt
|
|
priv/plts/
|
|
|
|
# NATS related files
|
|
nats.log
|
|
nats.pid
|
|
|
|
# Python cache and virtual environments
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.pytest_cache/
|
|
|
|
# Node.js (if any frontend components are added)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Coverage reports
|
|
cover/
|
|
coverage/
|
|
*.cover
|
|
*.lcov
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
*.orig
|
|
|
|
# Claude settings (local configuration)
|
|
.claude/
|
|
|
|
/docs/LANGUAGE_IMPLEMENTATIONS.md
|
|
/asdf.txt
|
|
/erl_crash.dump
|
|
/_build
|
|
/test_env
|
|
/docs
|
|
|
|
!/.vscode/mcp.json
|