better-auth-studio 1.0.11-beta.1 → 1.0.11-beta.3
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 +14 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,16 +6,16 @@ A powerful web-based studio interface for managing Better Auth applications. Bet
|
|
|
6
6
|
|
|
7
7
|
### Installation
|
|
8
8
|
|
|
9
|
-
Install Better Auth Studio globally using
|
|
9
|
+
Install Better Auth Studio globally using pnpm:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
|
|
12
|
+
pnpm add -g better-auth-studio
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Or use
|
|
15
|
+
Or use pnpx to run it without installation:
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
|
|
18
|
+
pnpx better-auth-studio
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
### Basic Usage
|
|
@@ -27,7 +27,7 @@ npx better-auth-studio
|
|
|
27
27
|
|
|
28
28
|
2. **Start the studio**
|
|
29
29
|
```bash
|
|
30
|
-
|
|
30
|
+
pnpx better-auth-studio start
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
3. **Open your browser**
|
|
@@ -137,7 +137,7 @@ export const auth = betterAuth({
|
|
|
137
137
|
|
|
138
138
|
### Start Studio
|
|
139
139
|
```bash
|
|
140
|
-
|
|
140
|
+
pnpx better-auth-studio start [options]
|
|
141
141
|
```
|
|
142
142
|
|
|
143
143
|
**Options:**
|
|
@@ -149,23 +149,22 @@ npx better-auth-studio start [options]
|
|
|
149
149
|
**Examples:**
|
|
150
150
|
```bash
|
|
151
151
|
# Start on custom port
|
|
152
|
-
|
|
152
|
+
pnpx better-auth-studio start --port 3001
|
|
153
153
|
|
|
154
154
|
# Start without opening browser
|
|
155
|
-
|
|
155
|
+
pnpx better-auth-studio start --no-open
|
|
156
156
|
|
|
157
157
|
# Use custom config file
|
|
158
|
-
|
|
158
|
+
pnpx better-auth-studio start --config ./custom-auth.ts
|
|
159
159
|
```
|
|
160
160
|
|
|
161
161
|
### Other Commands
|
|
162
162
|
```bash
|
|
163
163
|
# Check version
|
|
164
|
-
|
|
164
|
+
pnpx better-auth-studio --version
|
|
165
165
|
|
|
166
166
|
# Show help
|
|
167
|
-
|
|
168
|
-
```
|
|
167
|
+
pnpx better-auth-studio --help
|
|
169
168
|
|
|
170
169
|
## 📝 Development
|
|
171
170
|
|
|
@@ -176,13 +175,13 @@ git clone https://github.com/better-auth/better-auth-studio.git
|
|
|
176
175
|
cd better-auth-studio
|
|
177
176
|
|
|
178
177
|
# Install dependencies
|
|
179
|
-
|
|
178
|
+
pnpm install
|
|
180
179
|
|
|
181
180
|
# Build the project
|
|
182
|
-
|
|
181
|
+
pnpm run build
|
|
183
182
|
|
|
184
183
|
# Start development server
|
|
185
|
-
|
|
184
|
+
pnpm run dev
|
|
186
185
|
```
|
|
187
186
|
|
|
188
187
|
### Contributing
|