/ .dockerignore
.dockerignore
1 # Git & CI 2 .git 3 .github 4 .gitignore 5 .golangci.toml 6 .goreleaser.yml 7 manage.sh 8 9 # OS & Editor 10 .DS_Store 11 .vscode/ 12 .idea/ 13 *.swp 14 *.bak 15 16 # Go Build Artifacts 17 hister 18 hister.exe 19 pkg/ 20 bin/ 21 vendor/ 22 23 # Local Data & Configs 24 *.db 25 *.db-journal 26 *.db-shm 27 *.db-wal 28 config.yml 29 rules.json 30 .secret_key 31 data/ 32 33 # Documentation & Assets 34 docs/ 35 README.md 36 LICENSE 37 Dockerfile* 38 compose.yml 39 40 # Build Artifacts 41 webui/app/build/ 42 webui/website/build/ 43 44 # Browser Extension & Nix 45 ext/ 46 node_modules/ 47 flake.nix 48 flake.lock 49 nix/