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.
16 lines
378 B
Bash
Executable file
16 lines
378 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Setup VPN access
|
|
#
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
INFRA_ROOT="${SCRIPT_DIR}/../../../infrastructure"
|
|
|
|
# If --check flag, run health check
|
|
if [[ "${1:-}" == "--check" ]]; then
|
|
exec "${INFRA_ROOT}/scripts/dev-setup/vpn-health-check.sh"
|
|
else
|
|
exec "${INFRA_ROOT}/scripts/dev-setup/setup-vpn-access.sh" "$@"
|
|
fi
|