Advertisement
Beee

general gitignore

Jan 3rd, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. # Application
  2. .htaccess
  3. web/app/debug.log
  4. web/app/log/*
  5. !web/app/log/.gitkeep
  6. web/app/mu-plugins/*/
  7. web/app/plugins/*
  8. !web/app/plugins/.gitkeep
  9. !web/app/plugins/dpg-*
  10. !web/app/plugins/dpg-akamai-purge
  11. web/app/upgrade
  12. web/app/uploads/*
  13. !web/app/uploads/.gitkeep
  14.  
  15.  
  16. # WordPress
  17. web/wp
  18. web/.htaccess
  19.  
  20. # Dotenv
  21. .env
  22. .env.*
  23. !.env.example
  24.  
  25. # Docker
  26. docker-compose.yml
  27.  
  28.  
  29. # Composer
  30. vendor/*
  31. !vendor/.gitkeep
  32.  
  33. # SRC files
  34. src/sql/*
  35.  
  36. # Idea
  37. .idea/*
  38.  
  39. # Temp
  40. node_modules/*
  41. deploy.retry
  42. dist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement