create-cedar-app 0.12.1-next.0 → 0.12.1-next.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,22 +1,20 @@
1
- [![CedarJS](https://avatars.githubusercontent.com/u/211931789?s=200&v=4)](https://cedarjs.com)
2
-
3
- <!-- prettier-ignore-start -->
4
1
  <p align="center">
5
- <a aria-label="Start the Tutorial" href="https://redwoodjs.com/docs/tutorial">
6
- <img alt="" src="https://img.shields.io/badge/Start%20the%20Tutorial-%23BF4722?style=for-the-badge&labelColor=000000&logoWidth=20&logo=RedwoodJS">
7
- </a>
8
- <a aria-label="Join the Forums" href="https://community.redwoodjs.com">
9
- <img alt="" src="https://img.shields.io/badge/Join%20the%20Forums-%23FFF9AE?style=for-the-badge&labelColor=000000&logoWidth=20&logo=Discourse">
10
- </a>
11
- <a aria-label="Join the Chat" href="https://discord.gg/redwoodjs">
12
- <img alt="" src="https://img.shields.io/badge/Join%20the%20Chat-%237289DA?style=for-the-badge&labelColor=000000&logoWidth=20&logo=Discord&logoColor=white">
13
- </a>
2
+ <img src="https://avatars.githubusercontent.com/u/211931789?s=200&v=4" width="200" />
3
+ <h1 align="center">CedarJS</h1>
4
+ <p align="center">
5
+ <a href="https://cedarjs.com/discord">
6
+ <img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Join our Discord server!"
7
+ /></a>
8
+ <a href="https://cedarjs.com">
9
+ <img src="https://img.shields.io/badge/Documentation-3ECC5F?style=for-the-badge&logo=readthedocs&logoColor=white" alt="Documentation" />
10
+ </a>
11
+ </p>
14
12
  </p>
15
- <!-- prettier-ignore-end -->
13
+
16
14
  <br>
17
- <h1 align="center">The App Framework for Startups</h1>
15
+ <h2 align="center">The App Framework for Startups</h2>
18
16
 
19
- <h2 align="center">Ship today with architecture for tomorrow.</h2>
17
+ <h3 align="center">Ship today with architecture for tomorrow.</h3>
20
18
 
21
19
  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
20
 
@@ -30,19 +28,19 @@ CedarJS requires Node.js =20.x.
30
28
  yarn create cedar-app my-cedar-app
31
29
  cd my-cedar-app
32
30
  yarn install
33
- yarn redwood dev
31
+ yarn cedarjs dev
34
32
  ```
35
33
 
36
34
  <h3>Resources</h3>
37
35
 
38
- - The [Redwood Tutorial](https://redwoodjs.com/docs/tutorial): the best way to learn Redwood
39
- - The [Redwood CLI](https://cedarjs.com/docs/cli-commands): code generators, DB helpers, setup commands, and more
40
- - [Documentation](https://redwoodjs.com/docs) and [How To's](https://redwoodjs.com/how-to/custom-function)
41
- - Join the Community [Forums](https://community.redwoodjs.com) and [Chat](https://discord.gg/redwoodjs)
36
+ - The [CedarJS Tutorial](https://cedarjs.com/docs/tutorial): the best way to learn CedarJS
37
+ - The [Cedar CLI](https://cedarjs.com/docs/cli-commands): code generators, DB helpers, setup commands, and more
38
+ - [Documentation](https://cedarjs.com/docs) and [How To's](https://cedarjs.com/how-to/custom-function)
39
+ - Join our [Discord Chat](https://cedarjs.com/discord)
42
40
 
43
41
  <h2>Contributing to create-cedar-app</h2>
44
42
 
45
- _Contributors are Welcome! Get started [here](https://redwoodjs.com/docs/contributing). And don't hesitate to ask for help on the forums and chat_.
43
+ _Contributors are Welcome! Get started [here](https://cedarjs.com/docs/contributing). And don't hesitate to ask for help on the chat_.
46
44
 
47
45
  **Table of Contents**
48
46
 
@@ -98,29 +96,24 @@ yarn node ./dist/create-cedar-app.js /path/to/new/cedar-app
98
96
 
99
97
  ### How to run other published versions for debugging
100
98
 
101
- By default yarn create will pick the latest stable version to run, but you can specify a different version via yarn too!
99
+ `yarn create` will pick the latest stable version to run, so to run a different version the easiest way is to use `npx`.
102
100
 
103
101
  To try the canary version, run:
104
102
 
105
103
  ```
106
- npx create-cedar-app@canary /path/to/project
104
+ npx create-cedar-app@canary /path/to/new/cedar-app
107
105
  ```
108
106
 
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
-
111
107
  You can specify any tag or version instead of `@canary`
112
108
 
113
- ### Develop using the new project
109
+ Note that this will still create a project with the latest stable version, but
110
+ run the canary version (or other tag you specified) of create-cedar-app, and is
111
+ mainly useful for debugging this package, and not the CedarJS canary release.
114
112
 
115
- There are three options for developing with the installed project:
116
-
117
- **1. Upgrade the project to use the latest canary release**
113
+ If you want to try the CedarJS packages canary releases, you'll have to follow
114
+ up with an upgrade, like this:
118
115
 
119
116
  ```bash
120
117
  cd /path/to/new/cedar-app
121
- yarn rw upgrade -t canary
118
+ yarn cedarjs upgrade -t canary
122
119
  ```
123
-
124
- **2. Use the workflow and tools for local package development**
125
-
126
- - [Local Development Instructions](https://github.com/redwoodjs/redwood/blob/main/CONTRIBUTING.md)