Examples/ProfileFever_PSRepository_Example.ps1

<#
    .EXAMPLE
        Register the repository PSGallery.
#>

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -ModuleName 'ProfileFever'

    Node $NodeName
    {
        PSRepository 'PSGallery'
        {
            Ensure         = 'Present'
            Name           = 'PSGallery'
            SourceLocation = 'https://www.powershellgallery.com/api/v2/'
        }
    }
}