简体   繁体   中英

How to use a local git repository for a foxx application on ArangoDB

Foxx supports using a github repository for applications. How can we use a local git repo or any other vendor's repo?

A) For any other remote vendor you have the following options:

1) If it offers an url to download the file as a zip like github does eg: https://github.com/arangodb/arangodb/archive/devel.zip you can simply use this URL to install the foxx app.

foxx-manager install <your url>.zip /test

2) If not you can checkout the repository locally and continue with B)

B) If you have the repository locally say at the location /Users/me/myApp you can install it from the local file system using:

foxx-manager install /Users/me/myApp /test

We plan to support other git vendors directly as well in the future but it is not yet implemented.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM