-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (38 loc) · 959 Bytes
/
Copy path.gitignore
File metadata and controls
42 lines (38 loc) · 959 Bytes
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
# -----------------------------------------------------------------------------
# Local / accidental builds at repository root (keep bin/ release artifacts)
# -----------------------------------------------------------------------------
/LLMProxyAS
/LLMProxyAS.exe
/llm-proxy
/llm-proxy.exe
# Test & coverage
*.test
*.out
coverage.*
coverage.html
# IDE / OS
.idea/
.vscode/
*.swp
*~
.DS_Store
Thumbs.db
# Local secrets (templates stay tracked)
configs/config.local.json
.env
.env.local
.env.*.local
.env.*
!.env.example
# -----------------------------------------------------------------------------
# Release binaries ARE tracked under bin/ for user download
# (rebuild with: scripts/build-all.ps1)
#
# Tracked intentionally:
# bin/LLMProxyAS.exe
# bin/LLMProxyAS-windows-*.exe
# bin/LLMProxyAS-linux-*
# bin/LLMProxyAS-darwin-*
# bin/configs/*
# bin/README.txt
# -----------------------------------------------------------------------------