Skip to content

Commit

Permalink
docs: Removed references of Pandora (#97)
Browse files Browse the repository at this point in the history
* Removed references from unstract

* Removed references of Pandora in docs/README.md

---------

Co-authored-by: Neha <[email protected]>
  • Loading branch information
chandrasekharan-zipstack and nehabagdia authored Sep 3, 2024
1 parent 1b9546f commit 4d69936
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Execute the below command from [sdks](/sdks/) in order to generate the markdown
```
lazydocs src/unstract/sdk \
--output-path ./docs/site/docs/API\ Reference/ \
--src-base-url https://github.com/Zipstack/Pandora/tree/development
--src-base-url https://github.com/Zipstack/unstract/tree/development
```

**NOTE:** There exists issues with lazydocs' generation and all image tags in the generated markdown need to be removed for
Expand Down
4 changes: 2 additions & 2 deletions docs/site/docs/Tools/3_Installation and quick start.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ To create a new tool, run the following command:
```bash
unstract-tool-gen --command NEW \
--tool-name indexer \
--location ~/Devel/Github/pandora/tools/ \
--location ~/Devel/Github/unstract/tools/ \
--overwrite false
```

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

The tool will be created with the following structure:

Expand Down
6 changes: 3 additions & 3 deletions docs/site/docs/Tools/8_Implementing and testing the tool.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ To use the local development version of the _unstract sdk_ install it from the l
the path to your local repository:

```commandline
pip install ~/Devel/Github/pandora/sdks/.
pip install ~/Devel/Github/unstract/sdks/.
```

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

```commandline
docker run \
-v /Users/arun/Devel/pandora_storage:/mnt/unstract/fs_input \
-v /Users/arun/Devel/unstract_storage:/mnt/unstract/fs_input \
unstract-tool-fileops:0.1 \
python main.py \
--command RUN \
Expand All @@ -462,7 +462,7 @@ docker run \

Notes for Docker:

* The `-v` option mounts the `/Users/arun/Devel/pandora_storage` folder on the host machine to
* The `-v` option mounts the `/Users/arun/Devel/unstract_storage` folder on the host machine to
the `/mnt/unstract/fs_input`. Replace the path with the path to your documents folder.
* When this command is called by the workflow execution subsystem, the path to the input files configured by the user in
the UI is automatically mounted and loaded as a volumne in the `/mnt/unstract/fs_input` folder in the container.
2 changes: 1 addition & 1 deletion docs/site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const config = {
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/Zipstack/pandora/tree/main',
'https://github.com/Zipstack/unstract/tree/main',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
Expand Down

0 comments on commit 4d69936

Please sign in to comment.