This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################################### | |
| # Title: vercel-api-deployments.sh - Deployment cleanup functions | |
| # Description: This script is used to list and cleanup deployments on Vercel. | |
| # Author: Adam Dennis | |
| # Date: 2025-09-19 | |
| # Version: 1.0.0 | |
| ############################################################################### | |
| # Usage: ./vercel-api-deployments.sh | |
| # Simply set your Vercel API credentials (below) and then run the script to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Make sure you have the following installed: | |
| # 1. homebrew for MacOS | |
| # 2. docker desktop for MacOS | |
| # Run the following commands, in order: | |
| brew install ollama; | |
| ollama serve &; | |
| ollama pull llama3; | |
| docker run -d -p 3000:8080 --add-host=host.docker.internal:host-gateway -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const existingFields = [ | |
| { | |
| id: "1", | |
| name: "", | |
| value: "6.2%", | |
| related_id: "1", | |
| }, | |
| { | |
| id: "3", | |
| name: "", |