weave v3.1.2 Weave.Loaders.File
This loader will attempt to consume files located within a configured directory. The directory must be cofigured like one of the following:
config :weave, file_directory: "/some/path"
config :weave, file_directories: [
"/some/path",
"/some/other/path"
]
With the above configuration, any files in the mentioned directories will be sent to the handler.
Please note, the filenames will be “sanitized” before being sent to the handler.
This means “/some/path/my_DB_password” will become “my_db_password”