CI: Update .gitignore and .dockerignore files

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2024-07-27 12:22:42 +02:00
parent ac94998444
commit 2af24876dc
2 changed files with 36 additions and 32 deletions

View File

@@ -13,7 +13,6 @@
/coverage.* /coverage.*
/frontend/tests/acceptance/screenshots /frontend/tests/acceptance/screenshots
/tmp/ /tmp/
.dockerignore
.idea .idea
.DS_Store .DS_Store
.env .env
@@ -21,3 +20,6 @@
*.db-journal *.db-journal
Dockerfile Dockerfile
docker-compose* docker-compose*
compose.yaml
compose.*.yaml
.dockerignore

64
.gitignore vendored
View File

@@ -1,26 +1,46 @@
# Application files and directories # Local build files and directories
/photoprism /photoprism
/photoprism-* /photoprism-*
/photos/originals/* /photos/originals/*
/photos/import/* /photos/import/*
/storage/* /storage/*
/build/* /build/*
/node_modules
/pro
/plus
/frontend/.eslintcache
/frontend/node_modules/*
/frontend/tests/*.html
/frontend/tests/*.log
/frontend/tests/screenshots
/frontend/src/locales/*.mo
/assets/docs /assets/docs
/assets/facenet /assets/facenet
/assets/nasnet /assets/nasnet
/assets/nsfw /assets/nsfw
/assets/static/build/ /assets/static/build/
/package-lock.json /pro
/plus
*.exe
*.dll
*.so
*.dylib
/*.zip
# Test output and coverage files
*.out
*.test
/coverage.*
frontend/coverage/
# Frontend cache and dependencies
/node_modules
/frontend/node_modules/*
/frontend/tests/*.html
/frontend/tests/*.log
/frontend/tests/screenshots
/frontend/src/locales/*.mo
/frontend/tests_output /frontend/tests_output
/frontend/.eslintcache
/package-lock.json
# Python cache and dependencies
venv
.venv
__pycache__
# Temporary database, log, and config files
/tmp/ /tmp/
*.log *.log
*.pid *.pid
@@ -31,23 +51,7 @@
*.override.yaml *.override.yaml
*.tmp.yaml *.tmp.yaml
# Binaries for programs and plugins # Files generated automatically, e.g. by IDEs and operating systems
*.exe
*.dll
*.so
*.dylib
/*.zip
# Test binary, build with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
/coverage.*
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/
# Generated files
.DS_Store .DS_Store
.DS_Store? .DS_Store?
._* ._*
@@ -57,6 +61,7 @@ ehthumbs.db
Thumbs.db Thumbs.db
.heartbeat .heartbeat
.idea .idea
.glide
*~ *~
.goutputstream* .goutputstream*
.c9revisions .c9revisions
@@ -64,6 +69,3 @@ Thumbs.db
.swp .swp
.tmp .tmp
.env .env
#Karma Coverage Report
frontend/coverage/