Last active
October 9, 2016 17:15
-
-
Save cvogt/5f8c6aaf7ec8c1209da9e324a38ef9d6 to your computer and use it in GitHub Desktop.
Revisions
-
cvogt revised this gist
Oct 9, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,8 +2,8 @@ object DynamicConfig{ def main(args: Array[String]): Unit = { Application.run( Config( sys.props.get("db.host").get, 10000 ) } } -
cvogt created this gist
Oct 9, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ object DynamicConfig{ def main(args: Array[String]): Unit = { Application.run( Config( Option(System.getProperty("db.host")).get, Option(System.getProperty("db.port")).get.toInt ) } }