Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Create Application from ServiceNow SDK and CLI in Xanadu

ELMAHDI
Tera Expert

Hello Community, I have a problem when trying to create new project from the CLI I get this problem

 

Capture d’écran 2024-10-10 à 22.21.40.png

1 ACCEPTED SOLUTION

Venkat79
ServiceNow Employee
ServiceNow Employee

Hi @ELMAHDI 

The command for creating is,

now-sdk create <scope_name> <directory>

More info in docs: https://docs.servicenow.com/bundle/xanadu-application-development/page/build/servicenow-sdk/referenc...

the first parameter after the `create` command is scope name, which allows only `_` and should start with prefix, `x_vendorprefix`

-- Venkat


View solution in original post

2 REPLIES 2

Venkat79
ServiceNow Employee
ServiceNow Employee

Hi @ELMAHDI 

The command for creating is,

now-sdk create <scope_name> <directory>

More info in docs: https://docs.servicenow.com/bundle/xanadu-application-development/page/build/servicenow-sdk/referenc...

the first parameter after the `create` command is scope name, which allows only `_` and should start with prefix, `x_vendorprefix`

-- Venkat


ELMAHDI
Tera Expert

Thank you,