Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Build artifacts
target/
build/
.gradle/

# IDE files
.idea/
*.iml
.vscode/
.project
.classpath
.settings/

# OS files
.DS_Store
Thumbs.db

# Version control
.git/
.gitignore

# Documentation
docs/
*.md
!README.md

# Test data and temporary files
photon_data/
*.tmp
*.log

# Docker files (except the ones we need)
docker-compose.override.yml
.dockerignore

# Node modules if any
node_modules/

# Other temporary files
*.swp
*.swo
*~
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ photon_data/
dependency-reduced-pom.xml
.gradle/
app/*/build
build/

.idea/
*.iml
Expand Down
Loading