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
```bat title="Try passing -h or --help as an argument to see the list of available script arguments"
293
+
.\img2num.bat -h REM or --help (they are are the same)
294
+
```
295
+
:::
279
296
</TabItem>
280
297
281
298
<TabItem value="powershell" label="PowerShell">
282
-
```bash title="Install all dependencies"
299
+
```ps1 title="Install all dependencies"
283
300
cd Img2Num
284
301
.\img2num.ps1 npm install
285
302
286
303
.\img2num.ps1 npm install --prefix ./docs
287
304
```
305
+
306
+
:::info
307
+
```ps1 title="Try passing -h or --help as an argument to see the list of available script arguments"
308
+
.\img2num.ps1 -h # or --help (they are are the same)
309
+
```
310
+
:::
288
311
</TabItem>
289
312
</Tabs>
290
313
</TabItem>
@@ -376,6 +399,20 @@ You can choose to only install the dependencies for one portion of the app, but
376
399
</TabItem>
377
400
</Tabs>
378
401
402
+
### Docs Search (Algolia DocSearch)
403
+
404
+
The documentation site ships with `Algolia DocSearch` already configured.
405
+
**You do not need Algolia credentials** to run the docs locally. If you do not provide credentials,
406
+
the search box will be inactive inlocal development, which is expected.
407
+
408
+
:::info
409
+
You can ignore this feature as it only affects production builds.
410
+
:::
411
+
412
+
### Environment variables (.env.example)
413
+
414
+
The docs site includes a `docs/.env.example` file to document the optional Algolia environment variables. For local development, you can safely leave these values blank, and you should never commit real secrets to the repository.
415
+
379
416
## Running the app for the first time
380
417
381
418
This section will help you run both the main application and the documentation site for the first time.
0 commit comments