diff --git a/docs/README.md b/docs/README.md index 0228173e..dc1b2585 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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 diff --git a/docs/site/docs/Tools/3_Installation and quick start.md b/docs/site/docs/Tools/3_Installation and quick start.md index 45756479..bd953c51 100644 --- a/docs/site/docs/Tools/3_Installation and quick start.md +++ b/docs/site/docs/Tools/3_Installation and quick start.md @@ -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: diff --git a/docs/site/docs/Tools/8_Implementing and testing the tool.md b/docs/site/docs/Tools/8_Implementing and testing the tool.md index 15341875..d1efd866 100644 --- a/docs/site/docs/Tools/8_Implementing and testing the tool.md +++ b/docs/site/docs/Tools/8_Implementing and testing the tool.md @@ -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: @@ -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 \ @@ -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. diff --git a/docs/site/docusaurus.config.js b/docs/site/docusaurus.config.js index 2de3bfc4..d2ff3e48 100644 --- a/docs/site/docusaurus.config.js +++ b/docs/site/docusaurus.config.js @@ -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'),