52 lines
756 B
Plaintext
52 lines
756 B
Plaintext
# =============================================================================
|
|
# WebMoney - .gitignore
|
|
# =============================================================================
|
|
|
|
# Dependencias
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Build
|
|
frontend/dist/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
storage/logs/*
|
|
!storage/logs/.gitignore
|
|
|
|
# Cache
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitignore
|
|
!storage/framework/cache/.gitignore
|
|
!storage/framework/sessions/.gitignore
|
|
!storage/framework/views/.gitignore
|
|
|
|
# Testing
|
|
coverage/
|
|
.phpunit.result.cache
|
|
|
|
# Temp
|
|
*.tmp
|
|
*.temp
|