### Start Frappe Bench Server Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Starts the Frappe Bench development server. This command should be run from the root of your bench directory. ```bash bench start ``` -------------------------------- ### Initialize Frappe Bench for Manual Installation Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md This command initializes a new Frappe Bench environment, which is a prerequisite for manual installation of Frappe Insights. ```bash bench init frappe-insights-bench ``` -------------------------------- ### Install Frappe Insights App on Bench Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Installs the Frappe Insights application into your Frappe Bench environment. Run this from within your bench directory. ```bash bench get-app insights ``` -------------------------------- ### Install Frappe Insights App on a Site Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Installs the Frappe Insights application onto a specific Frappe site. Ensure you replace 'insights.local' with your actual site name. ```bash bench --site insights.local install-app insights ``` -------------------------------- ### Run Frappe Insights with Docker Compose Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Use this command to start Frappe Insights using its Docker image. Ensure you have cloned the repository and navigated to the insights directory. ```bash cd insights docker-compose up ``` -------------------------------- ### Create a New Site with Frappe Bench Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Creates a new Frappe site within your bench. Replace 'insights.local' with your desired site name. ```bash bench new-site insights.local ``` -------------------------------- ### Map Site to Localhost Source: https://github.com/frappe/insights_docs/blob/main/docs/getting-started/installation.md Adds the specified Frappe site to your system's hosts file, allowing access via its local domain name. ```bash bench --site insights.local add-to-hosts ``` -------------------------------- ### Access Frappe Cloud Database Credentials Source: https://github.com/frappe/insights_docs/blob/main/docs/miscellaneous/faq.md Find your database credentials on Frappe Cloud by navigating to the Backup & Restore tab or directly via the provided URL. Enable database access to view credentials. ```text https://frappecloud.com/dashboard/sites//database ``` -------------------------------- ### Embed Chart as iframe in Frappe/ERPNext Source: https://github.com/frappe/insights_docs/blob/main/docs/miscellaneous/faq.md Export charts and dashboards as an iframe by clicking the 'Share' button and then 'Copy iframe'. This allows embedding visualizations anywhere on your Frappe/ERPNext site. ```text iframe ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.