Skip to content
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"])