mirror of
https://github.com/databasus/databasus.git
synced 2026-04-05 16:22:00 +02:00
74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
# Git and GitHub
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# Node modules everywhere
|
|
node_modules
|
|
**/node_modules
|
|
|
|
# Backend - exclude everything except what's needed for build
|
|
backend/tools
|
|
backend/mysqldata
|
|
backend/pgdata
|
|
backend/mariadbdata
|
|
backend/mongodbdata
|
|
backend/temp
|
|
backend/images
|
|
backend/bin
|
|
backend/*.exe
|
|
|
|
# Scripts and data directories
|
|
scripts
|
|
postgresus-data
|
|
databasus-data
|
|
|
|
# IDE and editor files
|
|
.idea
|
|
.vscode
|
|
.cursor
|
|
**/*.swp
|
|
**/*.swo
|
|
|
|
# Documentation and articles (not needed for build)
|
|
articles
|
|
docs
|
|
pages
|
|
|
|
# Notifiers not needed in container
|
|
notifiers
|
|
|
|
# Dist (will be built fresh)
|
|
frontend/dist
|
|
|
|
# Environment files (handled separately)
|
|
.env.local
|
|
.env.development
|
|
|
|
# Logs and temp files
|
|
**/*.log
|
|
tmp
|
|
temp
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Helm charts and deployment configs
|
|
deploy
|
|
|
|
# License and other root files
|
|
LICENSE
|
|
CITATION.cff
|
|
*.md
|
|
|
|
# Assets - exclude SVGs but keep tools
|
|
assets/*.svg
|
|
assets/tools/download_postgresql.sh
|
|
|
|
# Python cache
|
|
**/__pycache__
|
|
|
|
# Pre-commit config
|
|
.pre-commit-config.yaml
|