mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-20 22:23:02 +03:00
The !internal/web/dist/.gitkeep exception kept the dist build stub permanently visible as untracked noise and let it slip into commits four separate times (each reverted with a 'drop the accidentally committed dist build stub' commit). Nothing under dist/ is ever meant to be tracked — make dist-stub and CI recreate the stub on disk — so drop the whole exception block and let the plain dist/ rule cover it.
45 lines
530 B
Plaintext
45 lines
530 B
Plaintext
# Ignore editor and IDE settings
|
|
.idea/
|
|
.vscode/
|
|
.cursor/
|
|
.specify/
|
|
.claude/
|
|
.cache/
|
|
.sync*
|
|
|
|
# Ignore log files
|
|
*.log
|
|
|
|
# Ignore temporary files
|
|
tmp/
|
|
*.tar.gz
|
|
|
|
# Ignore build and distribution directories
|
|
backup/
|
|
bin/
|
|
x-ui/
|
|
dist/
|
|
release/
|
|
node_modules/
|
|
|
|
# Ignore compiled binaries
|
|
main
|
|
|
|
# Ignore OS specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore Go build files
|
|
*.exe
|
|
x-ui.db
|
|
x-ui.db-shm
|
|
x-ui.db-wal
|
|
system_metrics.gob
|
|
*.dump
|
|
|
|
# Ignore Docker specific files
|
|
docker-compose.override.yml
|
|
|
|
# Ignore .env (Environment Variables) file
|
|
.env
|