Ignorefiles
This commit is contained in:
parent
afe10b8b07
commit
4de34e4adb
2 changed files with 46 additions and 0 deletions
4
.containerignore
Normal file
4
.containerignore
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
**/target
|
||||||
|
**/node_modules
|
||||||
|
**/dist
|
||||||
|
**/.sqlite3
|
42
.gitignore
vendored
Normal file
42
.gitignore
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# Binaries for programs and plugins
|
||||||
|
*.exe
|
||||||
|
*.exe~
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
bin
|
||||||
|
db.sqlite3
|
||||||
|
|
||||||
|
# Test binary, built with `go test -c`
|
||||||
|
*.test
|
||||||
|
|
||||||
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
|
*.out
|
||||||
|
|
||||||
|
# Go workspace file
|
||||||
|
go.work
|
||||||
|
|
||||||
|
# Ignore dependency directories
|
||||||
|
node_modules
|
||||||
|
vendor/
|
||||||
|
|
||||||
|
# Ignore build artifacts
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Ignore IDE and editor-specific files
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Ignore configuration files
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
*.conf
|
||||||
|
|
||||||
|
# Ignore user-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
|
Loading…
Reference in a new issue