- Visit the elastic-swiftype GCP project
- if you don't have access, talk to @kellen and @bvans about getting access
- Click
CREATE INSTANCE
- Name the instance
- Select a region
- Set the
Machine type
to n1-standard-4 - Change the
Boot disk
and set the follow parameters
This file contains 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
#!/usr/bin/env ruby | |
require 'json' | |
gemfile = ARGV[0] || 'Gemfile.lock' | |
gems = {} | |
last_gem = '' | |
name = '' | |
File.readlines(gemfile).each do |line| |
This file contains 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
require 'json' | |
require 'elastic-site-search' # gem install elastic-site-search | |
require 'pry' | |
class RankingComparer | |
API_ENDPOINT = 'http://localhost:3002/api/v1/' | |
API_KEY = 'uQTxqyzMRxYMXgnnxVU1' | |
PAGE_SIZE = 40 | |
attr_reader :base_engine_name, :new_engine_name |
To uninstall Docker Desktop for Mac run /Applications/Docker.app/Contents/MacOS/Docker --uninstall
or uninstall it from the Docker Desktop UI Preferences under the "Troubleshooting" bug icon.
Download the Docker CLI client binary for Mac from https://download.docker.com/mac/static/stable/. The Mac Docker CLI client binary source code is Apache Licensed. Unpack and copy docker
to /usr/local/bin
.