-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (39 loc) · 1.45 KB
/
Copy path.gitignore
File metadata and controls
53 lines (39 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
db/*
Manifest.toml
*connection.yml
test/integration/db_2/migrations/
todo.txt
# --- Personal dev notes (not for contributors) ---
publish_todo.md
release_guide.md
# --- Documentação (Gerada Automaticamente) ---
docs/build/*
docs/site/
# --- Arquivos de Sistema e Editor ---
.DS_Store
.vscode/
*~
*.swp
# --- Padrão Julia (Artefatos de Cobertura e Memória) ---
*.jl.cov
.jl..cov
*.jl.mem
test/integration/db_sl/migrations/*
test/integration/db_sl/f1.sqlite*
test/performance/snoop_out/*
# Reload unit-test scratch (generated at runtime by test_reload.jl)
test/unit/db_r/
# Migration edge-case test artifacts (generated at runtime, never committed)
test/integration/db_test_migration/
test/integration/db_test_migration_pg/models.jl
test/integration/db_test_migration_pg/migrations/
# ...but DO commit the credential-free isolated fixture config (issue #36). The blanket
# *connection.yml rule (top of this file) would otherwise exclude it; this negation re-includes
# it (git last-match-wins). host/username/password are blank and hydrated in-memory at runtime.
!test/integration/db_test_migration_pg/connection.yml
# Claude Code parallel-session worktrees live here; keep their contents out of the main
# checkout's status (they are provisioned per-worktree, see .worktreeinclude).
.claude/worktrees/
# Personal Claude Code settings (machine-specific permission grants). Shared,
# repo-wide permissions live in .claude/settings.json instead.
.claude/settings.local.json