Skip to content

Commit b3db8ed

Browse files
committed
simplify helper script syntax
1 parent 56dcb1e commit b3db8ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/v3/open-source-self-hosting.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ git checkout v3
7878

7979
2. Run the start script and follow the prompts
8080
```bash
81-
./start.sh full # hint: you can append -d to run in detached mode
81+
./start.sh # hint: you can append -d to run in detached mode
8282
```
8383

8484
### Manual setup
@@ -132,7 +132,7 @@ TRIGGER_DOMAIN=1234-42-42-42-42.ngrok-free.app
132132
4. Quit the start script and launch it again, or run this:
133133

134134
```bash
135-
./stop.sh full && ./start.sh full
135+
./stop.sh && ./start.sh
136136
```
137137

138138
### Registry setup
@@ -157,7 +157,7 @@ docker login -u <your_dockerhub_username>
157157
4. Restart the services
158158

159159
```bash
160-
./stop.sh full && ./start.sh full
160+
./stop.sh && ./start.sh
161161
```
162162

163163
5. You can now deploy v3 projects using the CLI with these flags:
@@ -262,7 +262,7 @@ echo "FORCE_CHECKPOINT_SIMULATION=0" >> .env
262262

263263
```bash
264264
# if you're running everything on the same machine
265-
./stop.sh full && ./start.sh full
265+
./stop.sh && ./start.sh
266266

267267
# if you're running the worker on a different machine
268268
./stop.sh worker && ./start.sh worker

0 commit comments

Comments
 (0)