Files
opencloud/tests/acceptance/docker/src/serve-ocis.sh
T
Sawjan Gurung 60fd953c7e [docs-only] Document running tests using ociswrapper (#6283)
* add README for ociswrapper

* add doc on how to tests env config test suites with ociswrapper

* document running tests using ociswrapper

* update local docker compose setup for running tests

* make ocis able to run with ociswrapper

* update wrapper doc

* run with ociswrapper by default

* ignore md files on codacy

* fix README format
2023-05-16 14:39:17 +05:45

12 lines
136 B
Bash

#!/bin/sh
set -e
# init ocis
ocis init
if [ "$WITH_WRAPPER" = "true" ]; then
ociswrapper serve --bin=ocis
else
ocis server
fi