This commit is contained in:
2026-03-19 18:00:46 +07:00
commit f72ad2769f
98 changed files with 9299 additions and 0 deletions

147
.dockerignore Normal file
View File

@@ -0,0 +1,147 @@
# ============================================================================
# Git & Version Control
# ============================================================================
.git
.gitea
.github
.gitlab
.gitattributes
.gitignore
.pre-commit-config.yaml
# ============================================================================
# IDE & Editor
# ============================================================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
*.sublime-project
*.sublime-workspace
.editorconfig
# ============================================================================
# Documentation & Configuration
# ============================================================================
README.md
CHANGELOG.md
ARCHITECTURE.md
DEVELOPMENT.md
LICENSE
LICENSE.md
CONTRIBUTING.md
.prettierrc*
.eslintrc*
.stylelintrc*
# ============================================================================
# Build & Distribution
# ============================================================================
dist/
build/
out/
coverage/
.next/
.nuxt/
*.tsbuildinfo
# ============================================================================
# Testing
# ============================================================================
__tests__/
__test__/
test/
tests/
*.test.js
*.spec.js
.coverage
.nyc_output/
jest.config.js
karma.conf.js
# ============================================================================
# Environment & Secrets
# ============================================================================
.env
.env.local
.env.*.local
.env.test
.env.production
.envrc
.env-cmdrc.json
.secrets/
*.pem
*.key
*.crt
*.p12
*.pfx
# ============================================================================
# Temporary & Cache Files
# ============================================================================
tmp/
temp/
.tmp/
.cache/
*.tmp
*.temp
.DS_Store
Thumbs.db
ehthumbs.db
# ============================================================================
# Logs
# ============================================================================
*.log
logs/
log/
# ============================================================================
# Database & Data
# ============================================================================
postgres_data/
database_backups/
*.db
*.sqlite
*.sqlite3
*.sql
*.sql.gz
# ============================================================================
# Docker & Container Files (these files should not be in the container)
# ============================================================================
Dockerfile
docker-compose*.yml
.dockerignore
.docker/
# ============================================================================
# CI/CD
# ============================================================================
.github/
.gitlab-ci.yml
.circleci/
Jenkinsfile
.travis.yml
.appveyor.yml
azure-pipelines.yml
.drone.yml
# ============================================================================
# Misc
# ============================================================================
tsconfig.json
babel.config.js
webpack.config.js
rollup.config.js
gulpfile.js
Makefile
.nvmrc
.node-version
.npmrc
node_modules