mirror of
https://github.com/nimbusdotstorage/Nimbus
synced 2026-04-22 17:45:03 +02:00
94 lines
1.1 KiB
Plaintext
94 lines
1.1 KiB
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment files (except .env which is needed)
|
|
.env.local
|
|
.env.development.example
|
|
.env.production.example
|
|
|
|
# Build outputs
|
|
.next
|
|
dist
|
|
build
|
|
out
|
|
*.tsbuildinfo
|
|
|
|
# IDE/Editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Cache directories
|
|
.cache
|
|
.parcel-cache
|
|
.nyc_output
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env.test
|
|
|
|
# Husky
|
|
.husky/_
|
|
|
|
# Development and CI files
|
|
.prettierignore
|
|
.prettierrc
|
|
knip.config.ts
|
|
lint-staged.config.js
|
|
|
|
# Documentation
|
|
README.md
|
|
CONTRIBUTING.md
|
|
DEPLOYMENT.md
|
|
LICENSE
|
|
|
|
# Scripts (since you mentioned to ignore custom scripts)
|
|
scripts/
|
|
|
|
# Docker files (no need to copy docker files into docker)
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# GitHub
|
|
.github/
|