https://github.com/littleli/embed-arcadedb-clojure
Embedding ArcadeDB Server - Minimal Clojure example
https://github.com/littleli/embed-arcadedb-clojure
arcadedb clojure
Last synced: 11 months ago
JSON representation
Embedding ArcadeDB Server - Minimal Clojure example
- Host: GitHub
- URL: https://github.com/littleli/embed-arcadedb-clojure
- Owner: littleli
- License: unlicense
- Created: 2023-08-05T10:33:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-05T11:14:45.000Z (over 2 years ago)
- Last Synced: 2025-02-18T04:05:51.403Z (12 months ago)
- Topics: arcadedb, clojure
- Language: Clojure
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# embed-arcadedb-clojure
This is a very minimalistic demonstration of embedding ArcadeDB in JVM with Clojure
## notes
It's basically a must to include password to your database using environment variables or Java properties
because in Calva REPL, you may not be able to `input` password from the keyboard.
What worked for me the best is to set `JAVA_OPTS` like this:
```sh
JAVA_OPTS=-Darcadedb.server.rootPassword=playwithdata
```
By using environment variable you don't need to submit your password with your source code.
It also works multiplatform, including Windows.
Hope it helps someone!