seafile-containerized/seafile/pro_seafile_7.1/scripts_7.1/start.sh
Gerrit Gogel 030bd36c09 Revert "use pro_seafile_7.1 scripts"
This reverts commit bbbfb0ad8a.
2021-01-18 16:19:43 +01:00

19 lines
270 B
Bash

#!/bin/bash
function start-front-end() {
python /scripts/start.py
}
function start-back-end() {
python /scripts/start.py --mode backend
}
case $1 in
"front-end" )
start-front-end
;;
"back-end" )
start-back-end
;;
esac