Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docs and deps for new datomic-pro release #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ Included in this project are:
Follow the directs in https://docs.datomic.com/pro/releases.html to download
Datomic Pro and unzip it somewhere convenient.

After unzipping, install the `datomic` dependency to your local maven repository:

```shell
cd datomic-pro-$VERSION
bin/maven-install
```

The above requires the `mvn` binary installed locally (available from Homebrew via `brew install mvn`).

Start the transactor:

cd datomic-pro-$VERSION
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
:repositories {"my.datomic.com" {:url "https://my.datomic.com/repo"
:creds :gpg}}
:dependencies [[org.clojure/clojure "1.10.3"]
[com.datomic/datomic-pro "1.0.6610"]]
[com.datomic/peer "1.0.6733"]]
:source-paths ["src/clj" "examples/clj"]
:jvm-opts ^:replace ["-Xmx2g" "-server"])