Last active
October 9, 2016 17:15
-
-
Save cvogt/1a4465426a8baf0d9cbe6e2080e351ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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