Dominik Sander

Results 160 comments of Dominik Sander

That is an impressive list of services 😄 With the configuration you are using the mysql service inside the Huginn container is using `${USERDIR}/docker/huginn/config` as the directory on the host...

Hmm I don't know how to make this work on CI, locally the new test is one of the few that passes, it might be related to the docker version?...

You are right, that is indeed not very helpful, would you be interested in sending a PR that updates the documentation?

> And TIMEZONE="Asia/Singapore" for the .env file but I realise that if even the system shows the correct time, huggin uses the correct time (mouseover the time on a "background...

I think it's Rails specific, [this lists the timezone names](https://github.com/rails/rails/blob/fbe2433be6e052a1acac63c7faf287c52ed3c5ba/activesupport/lib/active_support/values/time_zone.rb#L31) Here is the output of rake time:zones:all * UTC -12:00 * International Date Line West * UTC -11:00 * American...

Did you pass an event having `url` set when you try ran the Agent?

Hi, this should convert the string to a number: ``` ... "message": "{% assign message = message | plus: 0 %}", ... ```

Woups, sorry about that, does this work? ``` ... "priority": "{{priority | plus: 0 | as_object }}" ... ```

@jarlave I don't think that will work because the Agent configuration has to be valid JSON.

@stevelord Adding documentation about this to the Wiki would be great! We added the `as_object` "hack" because `Liquid` was designed as a HTML template engine and we are kind of...