lilith-platform/scripts/commands/dev/vpn.sh
Lilith 3f75b5f243 chore: initialize monorepo with submodules
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.
2026-01-29 07:07:12 -08:00

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