Command Line Interface
The following is a comprehensive reference of the Redwood CLI. You can get a glimpse of all the commands by scrolling the aside to the right.
The Redwood CLI has two entry-point commands:
- redwood (alias
rw
), which is for developing an application, and - redwood-tools (alias
rwt
), which is for contributing to the framework.
This document covers the redwood
command . For redwood-tools
, see Contributing in the Redwood repo.
A Quick Note on Syntax
We use yargs and borrow its syntax here:
yarn redwood generate page <name> [path] --option
redwood generate page
is the command.<name>
and[path]
are positional arguments.<>
denotes a required argument.[]
denotes an optional argument.
--option
is an option.
Every argument and option has a type. Here <name>
and [path]
are strings and --option
is a boolean.
You'll also sometimes see arguments with trailing ..
like:
yarn redwood build [side..]
The ..
operator indicates that the argument accepts an array of values. See Variadic Positional Arguments.
create redwood-app
Create a Redwood project using the yarn create command:
yarn create redwood-app <project directory> [option]
Arguments & Options | Description |
---|---|
project directory | Specify the project directory [Required] |
--yarn-install | Enables the yarn install step and version-requirement checks. You can pass --no-yarn-install to disable this behavior |
--typescript , --ts | Generate a TypeScript project. JavaScript by default |
--overwrite | Create the project even if the specified project directory isn't empty |
--no-telemetry | Disable sending telemetry events for this create command and all Redwood CLI commands: https://telemetry.redwoodjs.com |
--yarn1 | Use yarn 1 instead of yarn 3 |
--git-init , --git | Initialize a git repo during the install process, disabled by default |
If you run into trouble during the yarn install step, which may happen if you're developing on an external drive and in other miscellaneous scenarios, try the --yarn1
flag:
yarn create redwood-app my-redwood-project --yarn1
build
Build for production.
yarn redwood build [side..]
We use Babel to transpile the api side into ./api/dist
and Vite to package the web side into ./web/dist
.
Arguments & Options | Description |
---|---|
side | Which side(s) to build. Choices are api and web . Defaults to api and web |
--verbose, -v | Print more information while building |
Usage
See Builds.
Example
Running yarn redwood build
without any arguments generates the Prisma client and builds both sides of your project:
~/redwood-app$ yarn redwood build
yarn run v1.22.4
$ /redwood-app/node_modules/.bin/redwood build
✔ Generating the Prisma client...
✔ Building "api"...
✔ Building "web"...
Done in 17.37s.
Files are output to each side's dist
directory:
├── api
│ ├── dist
│ ├── prisma
│ └── src
└── web
├── dist
├── public
└── src
check (alias diagnostics)
Get structural diagnostics for a Redwood project (experimental).
yarn redwood check
Example
~/redwood-app$ yarn redwood check
yarn run v1.22.4
web/src/Routes.js:14:5: error: You must specify a 'notfound' page
web/src/Routes.js:14:19: error: Duplicate Path
web/src/Routes.js:15:19: error: Duplicate Path
web/src/Routes.js:17:40: error: Page component not found
web/src/Routes.js:17:19: error (INVALID_ROUTE_PATH_SYNTAX): Error: Route path contains duplicate parameter: "/{id}/{id}"
console (alias c)
Launch an interactive Redwood shell (experimental):
- This has not yet been tested on Windows.
- The Prisma Client must be generated prior to running this command, e.g.
yarn redwood prisma generate
. This is a known issue.
yarn redwood console
Right now, you can only use the Redwood console to interact with your database (always with await
):
Example
~/redwood-app$ yarn redwood console
yarn run v1.22.4
> await db.user.findMany()
> [ { id: 1, email: 'tom@redwoodjs.com', name: 'Tom' } ]
data-migrate
Data migration tools.
yarn redwood data-migrate <command>
Command | Description |
---|---|
install | Appends DataMigration model to schema.prisma , creates api/db/dataMigrations directory |
up | Executes outstanding data migrations |
data-migrate install
- Appends a
DataMigration
model toschema.prisma
for tracking which data migrations have already run. - Creates a DB migration using
yarn redwood prisma migrate dev --create-only create_data_migrations
. - Creates
api/db/dataMigrations
directory to contain data migration scripts
yarn redwood data-migrate install
data-migrate up
Executes outstanding data migrations against the database. Compares the list of files in api/db/dataMigrations
to the records in the DataMigration
table in the database and executes any files not present.
If an error occurs during script execution, any remaining scripts are skipped and console output will let you know the error and how many subsequent scripts were skipped.
yarn redwood data-migrate up
dev
Start development servers for api and web.
yarn redwood dev [side..]
yarn redwood dev api
starts the Redwood dev server and yarn redwood dev web
starts the Vite dev server with Redwood's config.
Argument | Description |
---|---|
side | Which dev server(s) to start. Choices are api and web . Defaults to api and web |
--forward, --fwd | String of one or more Vite Dev Server config options. See example usage below |
Usage
If you're only working on your sdl and services, you can run just the api server to get GraphQL Playground on port 8911:
~/redwood-app$ yarn redwood dev api
yarn run v1.22.4
$ /redwood-app/node_modules/.bin/redwood dev api
$ /redwood-app/node_modules/.bin/dev-server
15:04:51 api | Listening on http://localhost:8911
15:04:51 api | Watching /home/dominic/projects/redwood/redwood-app/api
15:04:51 api \
| 15:04:51 api | Now serving
15:04:51 api \
| 15:04:51 api | ► http://localhost:8911/graphql/
Using --forward
(alias --fwd
), you can pass one or more Vite Dev Server config options. The following will run the dev server, set the port to 1234
, and disable automatic browser opening.
~/redwood-app$ yarn redwood dev --fwd="--port=1234 --open=false"
You may need to access your dev application from a different host, like your mobile device or an SSH tunnel. To resolve the “Invalid Host Header” message, run the following:
~/redwood-app$ yarn redwood dev --fwd="--allowed-hosts all"
For the full list of Vite Dev Server settings, see this documentation.
For the full list of Server Configuration settings, see this documentation.
deploy
Deploy your redwood project to a hosting provider target.
Netlify, Vercel, and Render
For hosting providers that auto deploy from Git, the deploy command runs the set of steps to build, apply production DB changes, and apply data migrations. In this context, it is often referred to as a Build Command. Note: for Render, which uses traditional infrastructure, the command also starts Redwood's api server.
AWS
This command runs the steps to both build your project and deploy it to AWS.
yarn redwood deploy <target>
Commands | Description |
---|---|
serverless | Deploy to AWS using Serverless framework |
netlify [...commands] | Build command for Netlify deploy |
render <side> [...commands] | Build command for Render deploy |
vercel [...commands] | Build command for Vercel deploy |
deploy serverless
Deploy to AWS CloudFront and Lambda using Serverless framework
yarn redwood deploy serverless
Options & Arguments | Description |
---|---|
--side | which Side(s)to deploy [choices: "api", "web"] [default: "web","api"] |
--stage | serverless stage, see serverless stage docs [default: "production"] |
--pack-only | Only package the build for deployment |
--first-run | Use this flag the first time you deploy. The first deploy wizard will walk you through configuring your web side to connect to the api side |
deploy netlify
Build command for Netlify deploy
yarn redwood deploy netlify
Options | Description |
---|---|
--build | Build for production [default: "true"] |
--prisma | Apply database migrations [default: "true"] |
--data-migrate, --dm | Migrate the data in your database [default: "true"] |
Example
The following command will build, apply Prisma DB migrations, and skip data migrations.
yarn redwood deploy netlify --no-data-migrate
While you may be tempted to use the Netlify CLI commands to build and deploy your project directly from you local project directory, doing so will lead to errors when deploying and/or when running functions. I.e. errors in the function needed for the GraphQL server, but also other serverless functions.
The main reason for this is that these Netlify CLI commands simply build and deploy -- they build your project locally and then push the dist folder. That means that when building a RedwoodJS project, the Prisma client is generated with binaries matching the operating system at build time -- and not the OS compatible with running functions on Netlify. Your Prisma client engine may be darwin
for OSX or windows
for Windows, but it needs to be debian-openssl-1.1.x
or rhel-openssl-1.1.x
. If the client is incompatible, your functions will fail.
Therefore, please follow the instructions in the Tutorial to sync your GitHub (or other compatible source control service) repository with Netlify and allow their build and deploy system to manage deployments.
The Netlify CLI still works well for linking your project to your site, testing local builds and also using their dev or dev --live to share your local dev server via a tunnel.
deploy render
Build (web) and Start (api) command for Render deploy. (For usage instructions, see the Render Deploy Redwood doc.)
yarn redwood deploy render <side>
Options & Arguments | Description |
---|---|
side | select side to build [choices: "api", "web"] |
--prisma | Apply database migrations [default: "true"] |
--data-migrate, --dm | Migrate the data in your database [default: "true"] |
--serve | Run server for api in production [default: "true"] |
Example
The following command will build the Web side for static-site CDN deployment.
yarn redwood deploy render web
The following command will apply Prisma DB migrations, run data migrations, and start the api server.
yarn redwood deploy render api
deploy vercel
Build command for Vercel deploy
yarn redwood deploy vercel
Options | Description |
---|---|
--build | Build for production [default: "true"] |
--prisma | Apply database migrations [default: "true"] |
--data-migrate, --dm | Migrate the data in your database [default: "true"] |
Example
The following command will build, apply Prisma DB migrations, and skip data migrations.
yarn redwood deploy vercel --no-data-migrate
destroy (alias d)
Rollback changes made by the generate command.
yarn redwood destroy <type>
Command | Description |
---|---|
cell <name> | Destroy a cell component |
component <name> | Destroy a component |
function <name> | Destroy a Function |
layout <name> | Destroy a layout component |
page <name> [path] | Destroy a page and route component |
scaffold <model> | Destroy pages, SDL, and Services files based on a given DB schema Model |
sdl <model> | Destroy a GraphQL schema and service component based on a given DB schema Model |
service <name> | Destroy a service component |
directive <name> | Destroy a directive |
exec
Execute scripts generated by yarn redwood generate script <name>
to run one-off operations, long-running jobs, or utility scripts.