Skip to content

Instantly share code, notes, and snippets.

@cvogt
Last active October 9, 2016 17:15
Show Gist options
  • Save cvogt/1a4465426a8baf0d9cbe6e2080e351ea to your computer and use it in GitHub Desktop.
Save cvogt/1a4465426a8baf0d9cbe6e2080e351ea to your computer and use it in GitHub Desktop.
object PartiallyDynamicConfig{
def main(args: Array[String]): Unit = {
Application.run(
Config(
sys.props.get("db.host") getOrElse "db.test-server.com",
10000
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment