create-cedar-app 0.12.1-next.0 → 0.13.0-rc.15
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 +27 -34
- package/dist/create-cedar-app.js +2 -2
- package/package.json +4 -4
- package/templates/esm-js/api/package.json +2 -2
- package/templates/esm-js/package.json +3 -3
- package/templates/esm-js/web/package.json +4 -4
- package/templates/esm-js/yarn.lock +298 -288
- package/templates/esm-ts/api/package.json +2 -2
- package/templates/esm-ts/package.json +3 -3
- package/templates/esm-ts/web/package.json +4 -4
- package/templates/esm-ts/yarn.lock +298 -288
- package/templates/js/api/package.json +2 -2
- package/templates/js/package.json +3 -3
- package/templates/js/web/package.json +4 -4
- package/templates/js/yarn.lock +298 -288
- package/templates/ts/api/package.json +2 -2
- package/templates/ts/package.json +3 -3
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/yarn.lock +298 -288
package/README.md
CHANGED
|
@@ -1,22 +1,20 @@
|
|
|
1
|
-
[](https://cedarjs.com)
|
|
2
|
-
|
|
3
|
-
<!-- prettier-ignore-start -->
|
|
4
1
|
<p align="center">
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
13
|
+
|
|
16
14
|
<br>
|
|
17
|
-
<
|
|
15
|
+
<h2 align="center">The App Framework for Startups</h2>
|
|
18
16
|
|
|
19
|
-
<
|
|
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
|
|
31
|
+
yarn cedarjs dev
|
|
34
32
|
```
|
|
35
33
|
|
|
36
34
|
<h3>Resources</h3>
|
|
37
35
|
|
|
38
|
-
- The [
|
|
39
|
-
- The [
|
|
40
|
-
- [Documentation](https://
|
|
41
|
-
- Join
|
|
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://
|
|
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
|
-
|
|
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/
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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)
|