### Download Easy Install Script Source: https://github.com/frappe/drive/blob/develop/README.md Use this command to download the easy install script for Frappe Drive production setup. ```bash wget https://frappe.io/easy-install.py ``` -------------------------------- ### Install Frappe Drive App Source: https://github.com/frappe/drive/blob/develop/README.md Add the Frappe Drive app to your bench setup. ```sh bench get-app drive --branch main ``` -------------------------------- ### Start Frappe Bench Source: https://github.com/frappe/drive/blob/develop/README.md Start the Frappe bench development server. ```bash bench start ``` -------------------------------- ### Download Frappe Drive Bench Setup Script Source: https://github.com/frappe/drive/blob/develop/README.md Download the init.sh script for setting up Frappe Drive with Docker. ```bash wget -O init.sh https://raw.githubusercontent.com/frappe/drive/main/docker/init.sh ``` -------------------------------- ### Install Frappe Drive App Source: https://github.com/frappe/drive/blob/develop/README.md Install the Frappe Drive app into your Frappe bench after downloading it. ```bash bench install-app drive ``` -------------------------------- ### Install Drive System Packages (Ubuntu/Debian) Source: https://github.com/frappe/drive/blob/develop/README.md Install necessary system packages for Frappe Drive on Ubuntu or Debian-based systems. ```bash sudo apt install ffmpeg libmagic ``` -------------------------------- ### Run Frappe Drive Deployment Source: https://github.com/frappe/drive/blob/develop/README.md Execute the easy install script to deploy Frappe Drive in a production environment. Replace placeholder values with your specific configuration details. ```bash python3 ./easy-install.py deploy \ --project=drive_prod_setup \ --email=email@example.com \ --image=ghcr.io/frappe/drive \ --version=stable \ --app=drive \ --sitename subdomain.domain.tld ``` -------------------------------- ### Install Drive System Packages (macOS) Source: https://github.com/frappe/drive/blob/develop/README.md Install necessary system packages for Frappe Drive on macOS using Homebrew. ```bash brew install libmagic ffmpeg ``` -------------------------------- ### Run Docker Compose Source: https://github.com/frappe/drive/blob/develop/README.md Start the Frappe Drive containers in detached mode using Docker Compose. ```bash docker compose up -d ``` -------------------------------- ### Download Docker Compose File Source: https://github.com/frappe/drive/blob/develop/README.md Download the docker-compose.yml file to set up Frappe Drive using Docker. ```bash wget -O docker-compose.yml https://raw.githubusercontent.com/frappe/drive/main/docker/docker-compose.yml ``` -------------------------------- ### Create Frappe Drive Directory Source: https://github.com/frappe/drive/blob/develop/README.md Set up a new directory for your Frappe Drive project locally. ```bash mkdir frappe-drive cd frappe-drive ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.