From 4b387961a4fce9571aa39fe10d9551c5483d9bac Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 3 Oct 2023 00:39:12 +0100 Subject: [PATCH 1/2] Update Quickstart.md --- docs/pages/Deploying/Quickstart.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/pages/Deploying/Quickstart.md b/docs/pages/Deploying/Quickstart.md index 54a608ad..e3adb379 100644 --- a/docs/pages/Deploying/Quickstart.md +++ b/docs/pages/Deploying/Quickstart.md @@ -1,8 +1,16 @@ ## Launching Web App Note: Make sure you have docker installed +On Mac OS or Linux just write: + +./setup.sh + +It will install all the dependencies and give you an option to download local model or use OpenAI + +Otherwise refer to this Guide: + 1. Open download this repository with `git clone https://github.com/arc53/DocsGPT.git` -2. Create .env file in your root directory and set your `OPENAI_API_KEY` with your openai api key +2. Create .env file in your root directory and set your `API_KEY` with your openai api key 3. Run `docker-compose build && docker-compose up` 4. Navigate to `http://localhost:5173/` From 23a5e566f2b08d3aeecb22e48e5fa46dff7897eb Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 3 Oct 2023 00:39:28 +0100 Subject: [PATCH 2/2] Update Quickstart.md --- docs/pages/Deploying/Quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/Deploying/Quickstart.md b/docs/pages/Deploying/Quickstart.md index e3adb379..f78a5fae 100644 --- a/docs/pages/Deploying/Quickstart.md +++ b/docs/pages/Deploying/Quickstart.md @@ -3,7 +3,7 @@ Note: Make sure you have docker installed On Mac OS or Linux just write: -./setup.sh +`./setup.sh` It will install all the dependencies and give you an option to download local model or use OpenAI