The bunny_farm library now uses application environment variables for setting the server connection properties. This has been on the todo list for quite some time, but as my system is still in development, there wasn’t a huge urgency to make this configurable. The time though has come, so without further ado, the following properties can be set in the app.config:
{amqp_username, <<"guest">>}, {amqp_password, <<"guest">>}, {amqp_virtual_host, <<"/">>}, {amqp_host, "localhost"}, {amqp_port, "5672"}
These need to be set in the properties for the application of the calling process. Since bunny_farm itself doesn’t start any processes itself, the config should be in the application of the calling process. This also gives more flexibility since multiple applications can each own their own server configuration.
Hello Brian,
Could you please let me know which license you’ve released bunny_farm under? There is no explicit license in the source files or a LICENSE file in the source tree on github
Thanks,
Leonard
LikeLike
Thanks for pointing this out, Leonard. I updated the source with licensing information, which I set to be the Apache License, version 2.
LikeLike