fix(env): add .gitattributes to automatically change Windows-style line endings (CRLF) to Unix-style line endings (LF)

This commit is contained in:
2026-03-25 01:22:31 +08:00
parent 9afe2dc5b1
commit 6b252598de
2 changed files with 9 additions and 0 deletions

1
run.sh
View File

@@ -12,6 +12,7 @@ if [ ! -f .env ]; then
fi
# Load environment variables
tr -d '\r' < .env > .env.tmp && mv .env.tmp .env
source .env
# 2. Handle Reverse Proxy and SSL Configuration