Guest User

Untitled

a guest
Apr 7th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. # create a copy of the configuration file, first we need to publish the configuration file:
  2. # $ /project/vendor/bin/crunz publish:config
  3.  
  4. # Crunz Configuration Settings
  5.  
  6. # This option defines where the task files and
  7. # directories reside.
  8. # The path is relative to the project's root directory,
  9. # where the Crunz is installed (Trailing slashes will be ignored).
  10. source: tasks
  11.  
  12. # The suffix is meant to target the task files inside the ":source" directory.
  13. # Please note if you change this value, you need
  14. # to make sure all the existing tasks files are renamed accordingly.
  15. suffix: Tasks.php
  16.  
  17. # By default the errors are not logged by Crunz
  18. # You may set the value to true for logging the errors
  19. log_errors: false
  20.  
  21. # This is the absolute path to the errors' log file
  22. # You need to make sure you have the required permission to write to this file though.
  23. errors_log_file:
  24.  
  25. # By default the output is not logged as they are redirected to the
  26. # null output.
  27. # Set this to true if you want to keep the outputs
  28. log_output: false
  29.  
  30. # This is the absolute path to the global output log file
  31. # The events which have dedicated log files (defined with them), won't be
  32. # logged to this file though.
  33. output_log_file:
  34.  
  35. # This option determines whether the output should be emailed or not.
  36. email_output: false
  37.  
  38. # This option determines whether the error messages should be emailed or not.
  39. email_errors: false
  40.  
  41. # Global Swift Mailer settings
  42. #
  43. mailer:
  44. # Possible values: smtp, mail, and sendmail
  45. transport: smtp
  46. recipients:
  47. sender_name:
  48. sender_email:
  49.  
  50.  
  51. # SMTP settings
  52. #
  53. smtp:
  54. host:
  55. port:
  56. username:
  57. password:
  58. encryption:
Add Comment
Please, Sign In to add comment