Root workspace configuration with 4 submodules: - codebase/ → lilith/platform-codebase - deployments/ → lilith/platform-deployments - tooling/ → lilith/platform-tooling - docs/ → lilith/platform-docs Tracks workspace config (package.json, turbo.json, bunfig.toml), CI workflows (.forgejo/), dev scripts, and instructions. Each submodule retains its own history and remote.
11 lines
226 B
Bash
Executable file
11 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Deploy to production
|
|
#
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
INFRA_ROOT="${SCRIPT_DIR}/../../../infrastructure"
|
|
|
|
exec "${INFRA_ROOT}/scripts/deploy/deploy-prod.sh" "$@"
|