File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -455,6 +455,11 @@ appRun() {
455
455
echo " "
456
456
exec supervisord -n -c " /etc/supervisor/supervisord.conf"
457
457
}
458
+ appInit () {
459
+ echo " === Running initial setup ==="
460
+ initialConfiguration
461
+ bootstrappingEnvironment
462
+ }
458
463
appManagePy () {
459
464
COMMAND=" $1 "
460
465
shift 1
@@ -541,6 +546,7 @@ appHelp() {
541
546
echo " > app:restore - Restore backups of Zulip instances"
542
547
echo " > app:certs - Create self-signed certificates"
543
548
echo " > app:run - Run the Zulip server"
549
+ echo " > app:init - Run inital setup of Zulip server"
544
550
echo " > [COMMAND] - Run given command with arguments in shell"
545
551
}
546
552
appVersion () {
@@ -555,6 +561,9 @@ case "$1" in
555
561
app:run)
556
562
appRun
557
563
;;
564
+ app:init)
565
+ appInit
566
+ ;;
558
567
app:managepy)
559
568
shift 1
560
569
appManagePy " $@ "
You can’t perform that action at this time.
0 commit comments