imagrc.toml 970 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # This is a example configuration file for the imag suite.
  2. # It is written in TOML
  3. [store]
  4. # Set to false if you do not want imag to create the directory where the store
  5. # lives implicitely
  6. implicit-create = false
  7. # Hooks which get executed right before the Store is closed.
  8. # They get the store path as StoreId passed, so they can alter the complete
  9. # store, so these hooks should be chosen carefully.
  10. store-unload-hook-aspects = [ "debug" ]
  11. pre-create-hook-aspects = [ "debug" ]
  12. post-create-hook-aspects = [ "debug" ]
  13. pre-move-hook-aspects = [ "debug" ]
  14. post-move-hook-aspects = [ "debug" ]
  15. pre-retrieve-hook-aspects = [ "debug" ]
  16. post-retrieve-hook-aspects = [ "debug" ]
  17. pre-update-hook-aspects = [ "debug" ]
  18. post-update-hook-aspects = [ "debug" ]
  19. pre-delete-hook-aspects = [ "debug" ]
  20. post-delete-hook-aspects = [ "debug" ]
  21. [store.aspects.debug]
  22. parallel = false
  23. mutable_hooks = true
  24. [store.hooks.stdhook_debug]
  25. aspect = "debug"