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
Copy file name to clipboardExpand all lines: packages/create/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,26 @@
1
-
# `@edgedb/create`: Project scaffolding for EdgeDB-backed applications
1
+
# `@gel/create`: Project scaffolding for Gel-backed applications
2
2
3
-
The `@edgedb/create` package provides a starting point for various frameworks with everything you need to start building an EdgeDB-backed application. We aim to follow the same conventions as the original "create-app" templates, but with EdgeDB as the database. There are a few different templates to choose from, including: Next.js, Remix, Express, Node HTTP Server.
3
+
The `@gel/create` package provides a starting point for various frameworks with everything you need to start building an Gel-backed application. We aim to follow the same conventions as the original "create-app" templates, but with Gel as the database. There are a few different templates to choose from, including: Next.js, Remix, Express, Node HTTP Server.
4
4
5
5
Important points to note:
6
6
7
7
-**Upstream changes:** We try to actively monitor and incorporate significant changes from the original "create-app" templates to to ensure developers have access to the latest features and best practices.
8
8
-**Support for major options:** While we strive to support the major options offered by the upstream "create-apps", we might not cover every possible configuration or permutation due to the vast scope of possibilities.
9
-
-**EdgeDB CLI installation:** For users who do not have the EdgeDB CLI installed, we automatically install it using our typical installation procedure.
9
+
-**Gel CLI installation:** For users who do not have the Gel CLI installed, we automatically install it using our typical installation procedure.
10
10
11
11
## Usage
12
12
13
13
```bash
14
-
$ npm create @edgedb
14
+
$ npm create @gel
15
15
# or
16
-
yarn create @edgedb
16
+
yarn create @gel
17
17
# or
18
-
pnpm create @edgedb
18
+
pnpm create @gel
19
19
# or
20
-
bun create @edgedb
20
+
bun create @gel
21
21
```
22
22
23
-
After running the command, you will be prompted to provide a project name and choose a template. You can also specify whether to use EdgeDB Auth, initialize a git repository, and install dependencies.
23
+
After running the command, you will be prompted to provide a project name and choose a template. You can also specify whether to use Gel Auth, initialize a git repository, and install dependencies.
24
24
25
25
The tool will then create a new directory with the specified name and set up the project.
26
26
@@ -42,7 +42,7 @@ Navigate into `packages/create`:
Copy file name to clipboardExpand all lines: packages/create/src/recipes/express/README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
-
# Express Integration Recipe for EdgeDB
1
+
# Express Integration Recipe for Gel
2
2
3
-
This recipe provides a starting point for building an [Express](https://expressjs.com/) application with EdgeDB as the database.
3
+
This recipe provides a starting point for building an [Express](https://expressjs.com/) application with Gel as the database.
4
4
5
-
✨ Check out the [`@edgedb/create` package](https://github.com/edgedb/edgedb-js/blob/master/packages/create/README.md) for more information.
5
+
✨ Check out the [`@gel/create` package](https://github.com/gel/gel-js/blob/master/packages/create/README.md) for more information.
6
6
7
7
## Usage
8
8
9
9
```bash
10
-
$ npm create @edgedb
10
+
$ npm create @gel
11
11
# or
12
-
yarn create @edgedb
12
+
yarn create @gel
13
13
# or
14
-
pnpm create @edgedb
14
+
pnpm create @gel
15
15
# or
16
-
bun create @edgedb
16
+
bun create @gel
17
17
```
18
18
19
-
After running the command, you will be prompted to provide a project name and choose the **"Express"** template. You can also specify whether to use EdgeDB Auth, initialize a git repository, and install dependencies.
19
+
After running the command, you will be prompted to provide a project name and choose the **"Express"** template. You can also specify whether to use Gel Auth, initialize a git repository, and install dependencies.
20
20
21
21
The tool will then create a new directory with the specified name and set up the project.
22
22
@@ -34,7 +34,7 @@ Navigate into `packages/create`:
0 commit comments