X run README.ss returns license error

I am trying to follow the instructions in the Readme.ss file from the TalentBlazor solution that I downloaded from https://talent.locode.dev/. When I run the following command:

x run README.ss

it gives me the following error:

This license has expired on 01/01/2013 and is not valid for use with this release. Please see servicestack.net or contact team@servicestack.net for more details.

Hi @bgiromini,

I’m having trouble reproducing the issue so trying to narrow down what might be the cause.

What version of the x tool do you have installed? You can find out by running x --version.

Also, do you have the environment variable “SERVICESTACK_LICENSE” set?

What OS are you running this command under? Eg Windows 10, Ubuntu Linux, WSL2, masOS 12.x?

Just updated yesterday.

Version: 6.0.2
ServiceStack: 6.03
Framework: .NET 6.0.4
OS: Unix Mac 12.2.1
echo $SERVICESTACK_LICENSE returns nothing.

Can you let me know if setting the SERVICESTACK_LICENSE Environment variable with your License Key is able to resolve the issue?

In the meantime you can generate curl commands to download the files by pasting in this snippet to #Script Code on sharpscript.net

var theme = 'Tailwind'
#each name in 'AlertSuccess,CheckboxInput,DateTimeInput,DynamicInput,ErrorSummary,SelectInput,TextAreaInput,TextInput'.split(',')
    `curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/${theme}/${name}.razor -O ${name}.razor`
/each

To generate these curl commands:

curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/AlertSuccess.razor -O AlertSuccess.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/CheckboxInput.razor -O CheckboxInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/DateTimeInput.razor -O DateTimeInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/DynamicInput.razor -O DynamicInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/ErrorSummary.razor -O ErrorSummary.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/SelectInput.razor -O SelectInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/TextAreaInput.razor -O TextAreaInput.razor
curl https://raw.githubusercontent.com/ServiceStack/ServiceStack/master/src/ServiceStack.Blazor/Components/Tailwind/TextInput.razor -O TextInput.razor

Which you can run in the folder to override the local *.razor components.