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
Navigate to the Appwrite Console repository and install dependencies.
50
50
51
51
```bash
52
-
cd appwrite-console &&pnpm install
52
+
cd appwrite-console &&bun install
53
53
```
54
54
55
55
### 3. Install and run Appwrite locally
@@ -68,7 +68,7 @@ Add a `.env` file by copying the `.env.example` file as a template in the projec
68
68
Finally, start a development server:
69
69
70
70
```bash
71
-
pnpm dev
71
+
bun dev
72
72
```
73
73
74
74
> **Note**
@@ -77,15 +77,15 @@ pnpm dev
77
77
### Build
78
78
79
79
```bash
80
-
pnpm build
80
+
bun run build
81
81
```
82
82
83
-
> You can preview the built app with `npm run preview`, regardless of whether you installed an adapter. This should _not_ be used to serve your app in production.
83
+
> You can preview the built app with `bun run preview`, regardless of whether you installed an adapter. This should _not_ be used to serve your app in production.
84
84
85
85
### Tests
86
86
87
87
```bash
88
-
pnpmtest
88
+
buntest
89
89
```
90
90
91
91
This will run tests in the `tests/` directory.
@@ -95,13 +95,13 @@ This will run tests in the `tests/` directory.
95
95
Code should be consistently formatted everywhere. Before committing code, run the code-formatter.
96
96
97
97
```bash
98
-
pnpm run format
98
+
bun run format
99
99
```
100
100
101
101
### Linter
102
102
103
103
```bash
104
-
pnpm run lint
104
+
bun run lint
105
105
```
106
106
107
107
### Diagnostics
@@ -113,7 +113,7 @@ Diagnostic tool that checks for the following:
0 commit comments