Initial commit
This commit is contained in:
109
.gitignore
vendored
Normal file
109
.gitignore
vendored
Normal file
@@ -0,0 +1,109 @@
|
|||||||
|
# ---> Custom
|
||||||
|
# macOS system files
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Windows system files
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Unix/Linux system files
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Logs and temporary files
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
.bower_components/
|
||||||
|
|
||||||
|
# Build directories
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
coverage/
|
||||||
|
out/
|
||||||
|
|
||||||
|
# Environment and secrets
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
*.lock
|
||||||
|
*.tmp
|
||||||
|
*.cache
|
||||||
|
*.pid
|
||||||
|
|
||||||
|
# Compiled files
|
||||||
|
*.class
|
||||||
|
*.o
|
||||||
|
*.so
|
||||||
|
*.exe
|
||||||
|
|
||||||
|
# Crash reports
|
||||||
|
*.stackdump
|
||||||
|
*.dmp
|
||||||
|
*.mdmp
|
||||||
|
|
||||||
|
# External version control systems
|
||||||
|
.svn/
|
||||||
|
.hg/
|
||||||
|
.git/
|
||||||
|
.cvsignore
|
||||||
|
|
||||||
|
# Backup and leftover files
|
||||||
|
*.bak
|
||||||
|
*.old
|
||||||
|
*.orig
|
||||||
|
|
||||||
|
# Extended macOS system files
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Node.js
|
||||||
|
npm-debug.log
|
||||||
|
yarn-error.log
|
||||||
|
.pnpm-debug.log
|
||||||
|
|
||||||
|
# JetBrains IDEs (IntelliJ IDEA, PhpStorm, WebStorm, etc.)
|
||||||
|
.idea/
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# Editor temporary files
|
||||||
|
.vscode/
|
||||||
|
*.code-workspace
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# Framework-specific files (Symfony, React, Angular, etc.)
|
||||||
|
var/
|
||||||
|
vendor/
|
||||||
|
public/uploads/
|
||||||
|
storage/
|
||||||
|
|
||||||
|
# Testing and linting tools
|
||||||
|
eslintcache/
|
||||||
|
.jest/
|
||||||
|
.jest-cache/
|
||||||
|
.jest-output/
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
docker-compose.override.yml
|
||||||
|
.env.docker.local
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
*.log.*
|
||||||
|
*.log~
|
||||||
|
|
||||||
Reference in New Issue
Block a user