Skip to content

Commit 212d23c

Browse files
authored
remove create-effect-app references (#1289)
1 parent faa07b2 commit 212d23c

File tree

3 files changed

+0
-153
lines changed

3 files changed

+0
-153
lines changed

content/src/content/docs/docs/getting-started/create-effect-app.mdx

Lines changed: 0 additions & 99 deletions
This file was deleted.

content/src/content/docs/docs/getting-started/importing-effect.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ By installing this package, you get access to the core functionality of Effect.
6565

6666
For detailed installation instructions for platforms like Deno or Bun, refer to the [Installation](/docs/getting-started/installation/) guide, which provides step-by-step guidance.
6767

68-
You can also start a new Effect app using [`create-effect-app`](/docs/getting-started/create-effect-app/), which automatically sets up everything for you.
69-
7068
## Importing Modules and Functions
7169

7270
Once you have installed the `effect` package, you can start using its modules and functions in your projects.

content/src/content/docs/docs/getting-started/installation.mdx

Lines changed: 0 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -12,58 +12,6 @@ Requirements:
1212
- TypeScript 5.4 or newer.
1313
- Node.js, Deno, and Bun are supported.
1414

15-
## Automatic Installation
16-
17-
To quickly set up a new Effect application, we recommend using `create-effect-app`, which will handle all configurations for you. To create a new project, run:
18-
19-
<Tabs syncKey="package-manager">
20-
21-
<TabItem label="npm" icon="seti:npm">
22-
23-
```sh showLineNumbers=false
24-
npx create-effect-app@latest
25-
```
26-
27-
</TabItem>
28-
29-
<TabItem label="pnpm" icon="pnpm">
30-
31-
```sh showLineNumbers=false
32-
pnpm create effect-app@latest
33-
```
34-
35-
</TabItem>
36-
37-
<TabItem label="Yarn" icon="seti:yarn">
38-
39-
```sh showLineNumbers=false
40-
yarn create effect-app@latest
41-
```
42-
43-
</TabItem>
44-
45-
<TabItem label="Bun" icon="bun">
46-
47-
```sh showLineNumbers=false
48-
bunx create-effect-app@latest
49-
```
50-
51-
</TabItem>
52-
53-
<TabItem label="Deno" icon="deno">
54-
55-
```sh showLineNumbers=false
56-
deno init --npm effect-app@latest
57-
```
58-
59-
</TabItem>
60-
61-
</Tabs>
62-
63-
Once you complete the prompts, `create-effect-app` will create a folder with your project name and install all required dependencies.
64-
65-
For more details on the CLI, see the [Create Effect App](/docs/getting-started/create-effect-app/) documentation.
66-
6715
## Manual Installation
6816

6917
### Node.js

0 commit comments

Comments
 (0)