https://dev.to/rutamhere/deploying-docsgpt-on-digitalocean-droplet-50ea Deploying DocsGPT Now you need to follow the steps given below to successfully deploy DocsGPT on your cloud instance. Step 1: Clone the DocsGPT repository to your instance. Use the command given below to do so. git clone https://github.com/arc53/DocsGPT.git Step 2: Update the package indexes of your Ubuntu system with the command given below. sudo apt update Step 3: DocsGPT needs containerization tools like docker and docker-compose to run. You can install them with the commands given below. Press Y when prompted to proceed with the installation. sudo apt install docker docker-compose Step 4: The .env variables for DocsGPT need to be set. You can do so by going to the DocsGPT folder and adding a .env file. cd DocsGPT/ nano .env Save the following values in the .env file. LLM_NAME = DocsGPT-7b ( You can choose any a...