gitignore
This commit is contained in:
58
.gitignore
vendored
58
.gitignore
vendored
@@ -6,11 +6,31 @@ yarn-error.log*
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.production
|
||||
.env.*
|
||||
.env.docker
|
||||
.env.example.local
|
||||
|
||||
# YouTube authentication
|
||||
# Configuration files with sensitive data
|
||||
config.json
|
||||
secrets.json
|
||||
credentials.json
|
||||
auth.json
|
||||
|
||||
# Authentication and cookies
|
||||
youtube-cookies.json
|
||||
cookies.json
|
||||
session.json
|
||||
auth-token.json
|
||||
*.pem
|
||||
*.key
|
||||
*.crt
|
||||
*.p12
|
||||
*.pfx
|
||||
|
||||
# API keys and tokens
|
||||
api-keys.json
|
||||
tokens.json
|
||||
.secrets
|
||||
|
||||
# Database
|
||||
database/*.db
|
||||
@@ -24,6 +44,17 @@ downloads/
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
*.log.*
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Temporary files
|
||||
temp/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
@@ -43,5 +74,22 @@ Thumbs.db
|
||||
# Build
|
||||
dist/
|
||||
build/
|
||||
!public
|
||||
!.serena/**/*
|
||||
out/
|
||||
coverage/
|
||||
|
||||
# Docker
|
||||
.dockerignore.local
|
||||
docker-compose.override.yml
|
||||
docker-compose.local.yml
|
||||
|
||||
# Backup files
|
||||
*.bak
|
||||
*.backup
|
||||
*.old
|
||||
*.orig
|
||||
|
||||
# Cache
|
||||
.cache/
|
||||
.npm/
|
||||
.yarn/
|
||||
*.tsbuildinfo
|
||||
|
||||
Reference in New Issue
Block a user