Skip to content

Commit 4d69936

Browse files
docs: Removed references of Pandora (#97)
* Removed references from unstract * Removed references of Pandora in docs/README.md --------- Co-authored-by: Neha <[email protected]>
1 parent 1b9546f commit 4d69936

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Execute the below command from [sdks](/sdks/) in order to generate the markdown
1111
```
1212
lazydocs src/unstract/sdk \
1313
--output-path ./docs/site/docs/API\ Reference/ \
14-
--src-base-url https://github.com/Zipstack/Pandora/tree/development
14+
--src-base-url https://github.com/Zipstack/unstract/tree/development
1515
```
1616

1717
**NOTE:** There exists issues with lazydocs' generation and all image tags in the generated markdown need to be removed for

docs/site/docs/Tools/3_Installation and quick start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ To create a new tool, run the following command:
2828
```bash
2929
unstract-tool-gen --command NEW \
3030
--tool-name indexer \
31-
--location ~/Devel/Github/pandora/tools/ \
31+
--location ~/Devel/Github/unstract/tools/ \
3232
--overwrite false
3333
```
3434

35-
This will create a new tool in the `~/Devel/Github/pandora/tools/` directory. Replace the directory with yours. The tool will be named `indexer`.
35+
This will create a new tool in the `~/Devel/Github/unstract/tools/` directory. Replace the directory with yours. The tool will be named `indexer`.
3636

3737
The tool will be created with the following structure:
3838

docs/site/docs/Tools/8_Implementing and testing the tool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ To use the local development version of the _unstract sdk_ install it from the l
357357
the path to your local repository:
358358

359359
```commandline
360-
pip install ~/Devel/Github/pandora/sdks/.
360+
pip install ~/Devel/Github/unstract/sdks/.
361361
```
362362

363363
Load the environment variables:
@@ -439,7 +439,7 @@ To test the tool from its docker image, run the following command:
439439

440440
```commandline
441441
docker run \
442-
-v /Users/arun/Devel/pandora_storage:/mnt/unstract/fs_input \
442+
-v /Users/arun/Devel/unstract_storage:/mnt/unstract/fs_input \
443443
unstract-tool-fileops:0.1 \
444444
python main.py \
445445
--command RUN \
@@ -462,7 +462,7 @@ docker run \
462462

463463
Notes for Docker:
464464

465-
* The `-v` option mounts the `/Users/arun/Devel/pandora_storage` folder on the host machine to
465+
* The `-v` option mounts the `/Users/arun/Devel/unstract_storage` folder on the host machine to
466466
the `/mnt/unstract/fs_input`. Replace the path with the path to your documents folder.
467467
* When this command is called by the workflow execution subsystem, the path to the input files configured by the user in
468468
the UI is automatically mounted and loaded as a volumne in the `/mnt/unstract/fs_input` folder in the container.

docs/site/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const config = {
4242
// Please change this to your repo.
4343
// Remove this to remove the "edit this page" links.
4444
editUrl:
45-
'https://github.com/Zipstack/pandora/tree/main',
45+
'https://github.com/Zipstack/unstract/tree/main',
4646
},
4747
theme: {
4848
customCss: require.resolve('./src/css/custom.css'),

0 commit comments

Comments
 (0)