hyukchan
01/21/2019, 12:40 PMrobin
01/21/2019, 12:43 PMinclude
statements in your application.conf
an option? Have a look at this: https://github.com/lightbend/config/blob/master/HOCON.md#include-semantics-file-formats-and-extensionsapplication.conf
by doing any variety of this:
include "overrides.conf"
include require("overrides.conf") // Throws when file can't be found
include url("<http://example.com/overrides.conf|example.com/overrides.conf>")
include "overrides" // Loads any overrides.conf, overrides.json or overrides.properties
hyukchan
01/21/2019, 12:46 PMrobin
01/21/2019, 12:47 PMhyukchan
01/21/2019, 12:52 PM