157 lines
3.4 KiB
Plaintext
157 lines
3.4 KiB
Plaintext
# ============================================================================
|
|
# Git & Version Control
|
|
# ============================================================================
|
|
.git
|
|
.gitea
|
|
.github
|
|
.gitlab
|
|
.gitattributes
|
|
.gitignore
|
|
.pre-commit-config.yaml
|
|
|
|
# ============================================================================
|
|
# Node.js / npm
|
|
# ============================================================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
package-lock.json
|
|
|
|
# ============================================================================
|
|
# 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
|