From 57ea21073ab6ad8c4ea6991967d8ebd3277a309f Mon Sep 17 00:00:00 2001 From: Lefteris Notas Date: Fri, 22 May 2026 19:28:44 +0300 Subject: [PATCH] feat: Add .gitattributes and .gitignore for Unreal project asset management --- .gitattributes | 16 ++++++++++++++++ .gitignore | 30 ++++++++++++++++++++++++++++++ .kilo/kilo.json | 15 ++++++++++++++- 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9c246e4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,16 @@ +# Unreal binary assets +*.uasset filter=lfs diff=lfs merge=lfs -text +*.umap filter=lfs diff=lfs merge=lfs -text + +# Common DCC / source asset formats you may want in LFS too +*.fbx filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.exr filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.mov filter=lfs diff=lfs merge=lfs -text \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a7a1704 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Unreal generated folders +Binaries/ +DerivedDataCache/ +Intermediate/ +Saved/ + +# Visual Studio / Rider / IDE +.vs/ +.vscode/ +.idea/ +*.VC.db +*.VC.opendb +*.sln +*.suo +*.opensdf +*.sdf + +# OS junk +Thumbs.db +.DS_Store + +# Local AI / tool folders +.kilo/ + +# Logs +*.log + +# Keep core Unreal project files +!*.uproject +!*.uplugin \ No newline at end of file diff --git a/.kilo/kilo.json b/.kilo/kilo.json index 9a85742..6ffe57a 100644 --- a/.kilo/kilo.json +++ b/.kilo/kilo.json @@ -2,5 +2,18 @@ "$schema": "https://app.kilo.ai/config.json", "indexing": { "enabled": true + }, + "mcp": { + "context7": { + "type": "local", + "command": [ + "npx", + "-y", + "@upstash/context7-mcp" + ], + "environment": { + "DEFAULT_MINIMUM_TOKENS": "{{DEFAULT_MINIMUM_TOKENS}}" + } + } } -} \ No newline at end of file +}