Consolidate onto F:\jankenstein; seed Unity MCP config + runbook, Unity .gitignore/.gitattributes
This commit is contained in:
parent
b5f7ef73ec
commit
647097cb95
7 changed files with 156 additions and 26 deletions
76
.gitignore
vendored
76
.gitignore
vendored
|
|
@ -1,4 +1,4 @@
|
|||
# Secrets — never commit
|
||||
# ---- Secrets — never commit ----
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
|
@ -11,32 +11,64 @@ credentials/
|
|||
.aws/
|
||||
.ssh/
|
||||
|
||||
# Dependencies / build artifacts
|
||||
# ---- Unity ----
|
||||
# Generated / cache folders (must not be committed)
|
||||
[Ll]ibrary/
|
||||
[Tt]emp/
|
||||
[Oo]bj/
|
||||
[Bb]uild/
|
||||
[Bb]uilds/
|
||||
[Ll]ogs/
|
||||
[Uu]ser[Ss]ettings/
|
||||
[Mm]emoryCaptures/
|
||||
[Rr]ecordings/
|
||||
.consulo/
|
||||
# Asset meta data should only be ignored when the corresponding asset is also ignored
|
||||
!/[Aa]ssets/**/*.meta
|
||||
# Unity3D-generated IDE/solution files
|
||||
*.csproj
|
||||
*.unityproj
|
||||
*.sln
|
||||
*.suo
|
||||
*.tmp
|
||||
*.user
|
||||
*.userprefs
|
||||
*.pidb
|
||||
*.booproj
|
||||
*.svd
|
||||
*.pdb
|
||||
*.mdb
|
||||
*.opendb
|
||||
*.VC.db
|
||||
# Unity3D build/crash files
|
||||
sysinfo.txt
|
||||
*.apk
|
||||
*.aab
|
||||
*.unitypackage
|
||||
*.app
|
||||
crashlytics-build.properties
|
||||
# Visual Studio / Rider
|
||||
.vs/
|
||||
.idea/
|
||||
ExportedObj/
|
||||
.gradle/
|
||||
|
||||
# ---- Editor / OS noise ----
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# ---- Claude local settings (per-machine) ----
|
||||
.claude/settings.local.json
|
||||
|
||||
# ---- Misc dependencies / build artifacts (non-Unity tooling) ----
|
||||
node_modules/
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
dist/
|
||||
build/
|
||||
target/
|
||||
*.egg-info/
|
||||
|
||||
# Editor / OS noise
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Logs / caches
|
||||
*.log
|
||||
.cache/
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
coverage/
|
||||
.coverage
|
||||
.nyc_output/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue