Domain support
This commit is contained in:
77
.gitignore
vendored
77
.gitignore
vendored
@@ -1,37 +1,82 @@
|
||||
# Dependencies
|
||||
node_modules/
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
# Environment
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.production
|
||||
.env.*.local
|
||||
|
||||
# Build
|
||||
dist/
|
||||
build/
|
||||
# Database
|
||||
*.db
|
||||
*.db-*
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
database/*.db
|
||||
backend/database/*.db
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Database (regenerate with migrations)
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
# Diagnostic reports
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Build directories
|
||||
dist/
|
||||
build/
|
||||
.cache/
|
||||
.parcel-cache/
|
||||
frontend/dist/
|
||||
frontend/build/
|
||||
|
||||
# Coverage directory
|
||||
coverage/
|
||||
*.lcov
|
||||
.nyc_output
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*.swn
|
||||
*~
|
||||
.DS_Store
|
||||
|
||||
# Temp
|
||||
temp/
|
||||
tmp/
|
||||
# PM2
|
||||
.pm2/
|
||||
ecosystem.config.js
|
||||
|
||||
# Backups
|
||||
backups/
|
||||
*.backup
|
||||
*.bak
|
||||
|
||||
# Test
|
||||
.test/
|
||||
test-results/
|
||||
|
||||
# Misc
|
||||
.tmp/
|
||||
.temp/
|
||||
*.tmp
|
||||
*.temp
|
||||
.sessions/
|
||||
sessions.db
|
||||
|
||||
# OS
|
||||
Thumbs.db
|
||||
.DS_Store
|
||||
|
||||
Reference in New Issue
Block a user