Public/Running/Start-EdenLocalServiceTunnel.ps1

function Start-EdenLocalServiceTunnel {
    <#
        .SYNOPSIS
        Creating the public tunnel to the local application.

        .DESCRIPTION
        Creating the public tunnel to the local application. by calling the local './Eden/Running/Start-LocalServiceTunnel.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Running/Start-LocalServiceTunnel" `
        -SettingsName $SettingsName `
        -CommandGroup "Running" `
        -Message "Creating the public tunnel to the local application." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-rst `
    -Value Start-EdenLocalServiceTunnel `
    -Force