Skip to content

Commit

Permalink
Merge pull request #9 from AlexWheeler/update-readme-add-config-edn
Browse files Browse the repository at this point in the history
adds config.edn template to readme.md
  • Loading branch information
AlexWheeler authored Nov 18, 2016
2 parents c137f7e + 43cdb80 commit 2a02a48
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,29 @@ Will eventually host jar, but for now assuming you're using leiningen, build .ja

Fill out config.edn file with database / sftp credentials and place in same directory as .jar.

```edn
{
:sftp {
:username ""
:password ""
:host ""
}
:db {
:username ""
:password ""
:address "localhost"
:port "1433"
:name ""
:tables [
""
""
""
""
]
}
}
```

Configure task to run `java -jar path_to_jar`.

## License
Expand Down

0 comments on commit 2a02a48

Please sign in to comment.