Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix SettingKey names
  • Loading branch information
shmishleniy authored Jun 30, 2016
1 parent 623d781 commit 38af159
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ There are four places where you can store your server config (All configs will b
``` sbt
lazy val myProject = project.enablePlugins(DeploySSH).settings(
//load build.conf from external path
deployExternalConfigFile ++= Seq("/home/myUser/Documents/build.conf"),
deployExternalConfigFiles ++= Seq("/home/myUser/Documents/build.conf"),
//load build2.conf from `myProjectDir` and load build3.conf from `myProjectDir/project`
deployResourceConfigFile ++= Seq("build2.conf", "project/build3.conf"),
deployResourceConfigFiles ++= Seq("build2.conf", "project/build3.conf"),
//load build4.conf from user home directory (in example `/home/myUser/build4.conf`)
deployHomeConfigFile ++= Seq("build4.conf"),
deployHomeConfigFiles ++= Seq("build4.conf"),
//configuration in project setttings
deployConfigs ++= mySettings,
deployConfigs ++= Seq(
Expand Down

0 comments on commit 38af159

Please sign in to comment.