1
0
Fork 0

Changed make example to use http instead of unix, which does not work if you machine is to slow as mine is

This commit is contained in:
Michael Hackstein 2013-06-12 16:07:32 +02:00
parent ed32dd0a9b
commit eea4fbce43
1 changed files with 3 additions and 2 deletions

View File

@ -377,13 +377,14 @@ examples:
@srcdir@/arangod/RestHandler/*.cpp \
> /tmp/arangosh.examples
$(MAKE) start-server PID=$(PID) SERVER_START="--server.endpoint unix://$(VOCDIR)/arango.sock --server.disable-authentication true" PROTO=unix
$(MAKE) start-server PID=$(PID) SERVER_START="--server.endpoint tcp://$(VOCHOST):$(VOCPORT) --server.disable-authentication true" PROTO=http
@builddir@/bin/arangosh \
-s \
-c @srcdir@/etc/relative/arangosh.conf \
--server.password "" \
--server.endpoint unix://$(VOCDIR)/arango.sock \
--server.endpoint tcp://$(VOCHOST):$(VOCPORT) \
--javascript.execute /tmp/arangosh.examples
## -----------------------------------------------------------------------------