-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
-
Install ArangoDB and create a database and a user with admin privileges for that database.
-
Install the Foxx CLI:
npm install --global foxx-cli
-
Assuming the database created in step 1 above is called
rgtest
and the admin user for that database isrguser
having passwordrgpasswd
, define a server endpoint for Foxx CLI:foxx server set local-rgtest http://localhost:8529 -D rgtest -u rguser -P
Enter
rgpasswd
at the prompt and press Enter to finish the server definition step. -
Clone this repository:
git clone https://github.com/RecallGraph/foxx-tracer-collector.git
-
Install module dependencies:
npm install
-
Copy
.env.example
to.env
and set the following values:ARANGO_SERVER=local-rgtest EVSTORE_MOUNT_POINT=/collector
The mounted service will be available at
http://localhost:8529/_db/rgtest/collector
after the installation is complete. -
Install the service:
npm run setup