Package Exports
- create-rwsdk
- create-rwsdk/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-rwsdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
create-rwsdk
A simple CLI wrapper for creating RedwoodSDK starter projects.
Installation
You can use this package directly with npx:
npx create-rwsdk my-projectOr install it globally:
npm install -g create-rwsdk
create-rwsdk my-projectUsage
create-rwsdk <project-name> [options]Arguments
<project-name>: Name of the project directory to create (required)
Options
-f, --force: Force overwrite if directory exists-h, --help: Display help information-V, --version: Display version number
Examples
Create a new project:
create-rwsdk my-awesome-appForce overwrite an existing directory:
create-rwsdk my-awesome-app --forceWhat it does
This tool is a simple wrapper around:
npx degit redwoodjs/sdk/starters/standard <project-name>It provides a more user-friendly interface with helpful messages and error handling.
Next steps after creating a project
cd <project-name>
yarn install
yarn rw devLicense
MIT