Configuring ArangoDB in development

How to configure (setup step on manifest.json) a new application in development mode? (running arangod with --javascript.dev-app-path)

I want to create the collections that I need during development through this script.

Thanx

+4
source share
1 answer

in development mode, the installation phase will automatically start at each request, and not break. If you want to explicitly call it, you can use arangosh and issue the following commands:

Setup:

arangosh> fm.devSetup(<your apps folder name>)

Teardown

arangosh> fm.devTeardown(<your apps folder name>)
+3
source

Source: https://habr.com/ru/post/1523986/


All Articles