-
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
rgtestand the admin user for that database isrguserhaving passwordrgpasswd, define a server endpoint for Foxx CLI:foxx server set local-rgtest http://localhost:8529 -D rgtest -u rguser -PEnter
rgpasswdat 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.exampleto.envand set the following values:ARANGO_SERVER=local-rgtest EVSTORE_MOUNT_POINT=/collectorThe mounted service will be available at
http://localhost:8529/_db/rgtest/collectorafter the installation is complete. -
Install the service:
npm run setup