diff --git a/files/usr/local/bin/setup-phabricator b/files/usr/local/bin/setup-phabricator index b2a19f2..b64911b 100755 --- a/files/usr/local/bin/setup-phabricator +++ b/files/usr/local/bin/setup-phabricator @@ -1,28 +1,36 @@ #!/usr/bin/env bash pushd /opt/phabricator # MYSQL bin/config set mysql.host mysql bin/config set mysql.pass $MYSQL_ENV_MYSQL_ROOT_PASSWORD if [ -n "$PHABRICATOR_STORAGE_NAMESPACE" ]; then bin/config set storage.default-namespace $PHABRICATOR_STORAGE_NAMESPACE fi # URLs bin/config set phabricator.base-uri $PHABRICATOR_URL if [ -n "$PHABRICATOR_ALT_FILE_DOMAIN" ]; then bin/config set security.alternate-file-domain "$PHABRICATOR_ALT_FILE_DOMAIN" fi # Mail if [ -n "$PHABRICATOR_USE_MAILGUN" ] && [ -n "$PHABRICATOR_DOMAIN" ] ; then bin/config set mailgun.domain $PHABRICATOR_DOMAIN fi +# Installation +if [ -z "$PHABRICATOR_NO_INSTALL" ]; then + bin/storage upgrade --force + bin/config set storage.mysql-engine.max-size 8388608 + bin/config set pygments.enabled true +fi + # Rights chown -R app /var/repo # We're done popd +sv restart phd touch .initialized