mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-23 20:49:13 -05:00
60fd953c7e
* 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
12 lines
136 B
Bash
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
|