Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Normalize line endings to prevent Windows CRLF issues in Docker containers

# Shell scripts MUST use LF (Linux line endings)
*.sh text eol=lf

# Python files should use LF
*.py text eol=lf

# Docker files should use LF
Dockerfile text eol=lf
.dockerignore text eol=lf
docker-compose.yml text eol=lf
docker-compose.*.yml text eol=lf

# Configuration files should use LF
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.env text eol=lf
*.env.* text eol=lf

# Markdown files
*.md text eol=lf

# XML files (for Maven)
*.xml text eol=lf
pom.xml text eol=lf

# Java files
*.java text eol=lf
*.drl text eol=lf

# Binary files (don't normalize)
*.jar binary
*.war binary
*.ear binary
*.pdf binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.xlsx binary
*.xls binary
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,7 @@ hs_err_pid*

# private files
**/.env.local
*.env
llm.env
tmp
TODO.md
Loading