You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h2align="center">Ship today with architecture for tomorrow.</h2>
20
20
21
-
Redwood is an opinionated framework for modern multi-client applications, built on React, GraphQL, and Prisma with full TypeScript support and ready to go with zero config.
21
+
CedarJS is an opinionated framework for modern multi-client applications, built on React, GraphQL, and Prisma with full TypeScript support and ready to go with zero config.
22
22
23
-
Want great developer experience and easy scaling? How about an integrated front- and back-end test suite, boilerplate code generators, component design, logging, API security + auth, and serverless or traditional deploy support? Redwood is here! Redwood works with the components and development workflow you love but with simple conventions and helpers to make your experience even better.
23
+
Want great developer experience and easy scaling? How about an integrated front- and back-end test suite, boilerplate code generators, component design, logging, API security + auth, and serverless or traditional deploy support? Cedar is here! Cedar works with the components and development workflow you love but with simple conventions and helpers to make your experience even better.
24
24
25
25
<h2>Quick Start</h2>
26
26
27
-
Redwood requires Node.js =20.x.
27
+
CedarJS requires Node.js =20.x.
28
28
29
29
```bash
30
-
yarn create cedar-app my-redwood-app
31
-
cd my-redwood-app
30
+
yarn create cedar-app my-cedar-app
31
+
cd my-cedar-app
32
32
yarn install
33
33
yarn redwood dev
34
34
```
@@ -57,7 +57,7 @@ _Contributors are Welcome! Get started [here](https://redwoodjs.com/docs/contrib
57
57
58
58
## Description
59
59
60
-
This package creates and installs a Redwood project, which is the entry point for anyone using Redwood. It has two parts:
60
+
This package creates and installs a Cedar project, which is the entry point for anyone using CedarJS. It has two parts:
61
61
62
62
- The installation script [`src/create-cedar-app.js`](./src/create-cedar-app.js)
63
63
- Project template code in the [`templates/`](./templates/) directory
@@ -70,7 +70,7 @@ The installation script is built with [Yargs](https://github.com/yargs/yargs).
70
70
71
71
### Template Codebase
72
72
73
-
The project codebase in [`templates/`](./templates/) uses [Yarn Workspaces](https://yarnpkg.com/features/workspaces) for a monorepo project containing the API and Web Sides. Redwood packages are included in `templates/ts/package.json`, `templates/ts/web/package.json`, and `templates/ts/api/package.json`, respectively.
73
+
The project codebase in [`templates/`](./templates/) uses [Yarn Workspaces](https://yarnpkg.com/features/workspaces) for a monorepo project containing the API and Web Sides. Cedar packages are included in `templates/ts/package.json`, `templates/ts/web/package.json`, and `templates/ts/api/package.json`, respectively.
74
74
75
75
### How to run `create-cedar-app` from your local repo and create a project
76
76
@@ -81,7 +81,7 @@ yarn install
81
81
yarn build
82
82
```
83
83
84
-
Then, navigate to the create redwood app package:
84
+
Then, navigate to the create-cedar-app package:
85
85
86
86
```bash
87
87
cd packages/create-cedar-app
@@ -90,11 +90,11 @@ cd packages/create-cedar-app
90
90
Run `yarn node` on the built file (`dist/create-cedar-app.js`) and pass in the path to the new project:
> the new project will install with the most recent major Redwood package version by default.
97
+
> the new project will install with the most recent major CedarJS package version by default.
98
98
99
99
### How to run other published versions for debugging
100
100
@@ -106,7 +106,7 @@ To try the canary version, run:
106
106
npx create-cedar-app@canary /path/to/project
107
107
```
108
108
109
-
Note that this will still create a project with the latest stable version, but run the canary version of create-cedar-app, and is mainly useful for debugging this package, and not the redwood canary release.
109
+
Note that this will still create a project with the latest stable version, but run the canary version of create-cedar-app, and is mainly useful for debugging this package, and not the CedarJS canary release.
110
110
111
111
You can specify any tag or version instead of `@canary`
112
112
@@ -117,7 +117,7 @@ There are three options for developing with the installed project:
117
117
**1. Upgrade the project to use the latest canary release**
0 commit comments