This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package = "lua-arangodb" | |
| version = "0.0.1-1" | |
| source = { | |
| url = "..." | |
| } | |
| description = { | |
| summary = "Arangodb client for lua, using REST Apis.", | |
| homepage = "...", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| agency: | |
| image: arangodb/arangodb | |
| environment: | |
| - ARANGO_ROOT_PASSWORD=openSesame | |
| command: --server.jwt-secret=openSesameJWT --database.password openSesame --server.endpoint tcp://0.0.0.0:5001 --agency.activate true --agency.size 1 --agency.supervision true | |
| coordinator: | |
| image: arangodb/arangodb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # resolve links - $0 may be a softlink | |
| PRG="$0" | |
| while [ -h "$PRG" ]; do | |
| ls=`ls -ld "$PRG"` | |
| link=`expr "$ls" : '.*-> \(.*\)$'` | |
| if expr "$link" : '/.*' > /dev/null; then | |
| PRG="$link" | |
| else |