- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2024 02:26 PM
Hello Community, I have a problem when trying to create new project from the CLI I get this problem
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2024 02:34 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2024 02:34 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2024 02:44 PM
Thank you,