Tomáš Landovský

Results 3 issues of Tomáš Landovský

Having this ### .env vars `DATABASE_URL_TEST=postgres://postgres:hele@postgres/techloop_automator_testik` ### db/config.yml ``` test: database: techloop_automator_test ... ``` ### Rakefile ``` require 'standalone_migrations' StandaloneMigrations::Tasks.load_tasks StandaloneMigrations::Configurator.environments_config do |env| env.on "test" do if (ENV['DATABASE_URL_TEST ']) db...

I use .env file to pass postgres url into my apps. Using this approach, I cannot migrate test environment db using `standalone-migrations`. When `DATABASE_URL` is set in environment, gem ignores...

Hi. I have a Graylog server configuration in place that was able to receive data submitted via this curl: `curl -XPOST http://graylog.domain.com:12201/gelf -p0 -d '{"short_message":"Hello there", "facility":"test", "tenant":"joseph", "report":"turnovers","speed":"1288"}'` Other...