dfc75a8619
Astrolabe has been extracted to its own repository at github.com/cbcoutinho/astrolabe for independent releases. Changes: - Replace third_party/astrolabe/ directory with git submodule - Remove astrolabe-ci.yml and appstore-build-publish.yml workflows - Remove scripts/bump-astrolabe.sh - Remove Astrolabe sections from bump-version.yml workflow - Remove Astrolabe build steps from test.yml CI workflow - Remove astrolabe volume mount from docker-compose.yml - Simplify astrolabe install hook to always use app store - Update CONTRIBUTING.md to reflect two-component monorepo Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
554 B
Bash
Executable File
19 lines
554 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euox pipefail
|
|
|
|
echo "Installing Astrolabe app from app store..."
|
|
|
|
if [ -d /var/www/html/custom_apps/astrolabe ]; then
|
|
echo "astrolabe app directory found in custom_apps (already installed)"
|
|
php /var/www/html/occ app:enable astrolabe
|
|
else
|
|
php /var/www/html/occ app:install astrolabe
|
|
php /var/www/html/occ app:enable astrolabe
|
|
fi
|
|
|
|
echo "Astrolabe app installed successfully"
|
|
echo ""
|
|
echo "Note: MCP server configuration is managed dynamically during tests"
|
|
echo " to support testing multiple MCP server deployments."
|