Skip to content

Commit 37196b3

Browse files
committed
docs: include adoc about arangodb
Signed-off-by: Otavio Santana <[email protected]>
1 parent 2a03889 commit 37196b3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.adoc

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,34 @@
11
= arangodb-sample
2+
:toc: auto
23

34
This project uses Quarkus, the Supersonic Subatomic Java Framework.
45

56
If you want to learn more about Quarkus, please visit its website: https://quarkus.io/.
67

8+
== About ArangoDB
9+
10+
ArangoDB is a multi-model database that supports three data models: key/value, document, and graph, using a unified query language called AQL (Arango Query Language).
11+
This flexibility makes it an excellent choice for projects that require relational data, document storage, or graph processing, without the need for separate databases.
12+
13+
Some features of ArangoDB include:
14+
* Native multi-model support for graph, document, and key/value data.
15+
* AQL (Arango Query Language) for powerful and flexible querying.
16+
* Horizontal scaling and clustering capabilities.
17+
* Built-in support for ACID transactions.
18+
* Easy integration with programming languages, including Java.
19+
20+
To learn more about ArangoDB, visit the official website: https://www.arangodb.com/.
21+
22+
== Running ArangoDB
23+
24+
To execute an instance of ArangoDB locally using Docker, you can use the following command:
25+
26+
[source,shell]
27+
----
28+
docker run -e ARANGO_NO_AUTH=1 -d --name arangodb-instance -p 8529:8529 -d arangodb/arangodb
29+
----
30+
31+
732
== Running the application in dev mode
833

934
You can run your application in dev mode that enables live coding using:

0 commit comments

Comments
 (0)