init
This commit is contained in:
73
.gitignore
vendored
Normal file
73
.gitignore
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
# Composer
|
||||
composer.phar
|
||||
composer.lock
|
||||
|
||||
# IDE
|
||||
/.idea/
|
||||
/.vscode/
|
||||
nbproject
|
||||
Thumbs.db
|
||||
|
||||
# System
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# Runtime data
|
||||
/data/runtime/
|
||||
/data/cache/
|
||||
/data/temp/
|
||||
|
||||
# Backup data
|
||||
/data/backup/
|
||||
|
||||
# Environment variables
|
||||
# .env
|
||||
# .env.local
|
||||
# .env.*.local
|
||||
|
||||
# Build artifacts
|
||||
/node_modules
|
||||
/build
|
||||
/dist
|
||||
|
||||
# Database
|
||||
# *.sql
|
||||
# *.sqlite
|
||||
|
||||
# Temporary files
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Uploads directory exceptions (if needed)
|
||||
!/uploads/.gitkeep
|
||||
|
||||
# Ignore config files that might contain sensitive information
|
||||
# /application/database.php
|
||||
# /config/database.php
|
||||
|
||||
# Ignore user specific files
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# PHP specific
|
||||
*.php~
|
||||
.php_cs.cache
|
||||
.php_cs.dist
|
||||
.phpunit.result.cache
|
||||
|
||||
# OS generated files
|
||||
**/*.DS_Store
|
||||
**/*.swp
|
||||
**/*~
|
||||
|
||||
# Editor files
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
Reference in New Issue
Block a user