mirror of
https://github.com/beekeeper-studio/beekeeper-studio.git
synced 2026-03-13 10:12:54 +08:00
Initial BigQuery Client Support Upstream update ConnectionInterface.vue Multiple changes, cleanup and vscode - Cleanup code for upstream PR - Finally a working vscode launch with proper sourceMap for Renderer Add listViews and logs cleanup Vscode Launch config Adding BigQuery Client Update Bigqueryform.vue fix build issues Bigquery, bugfixes and changes
22 lines
655 B
Bash
Executable File
22 lines
655 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# Install curl
|
|
# apt update
|
|
# apt install -y axel procps htop
|
|
|
|
# # Change directory to /work
|
|
# cd /work
|
|
|
|
# # Download and install Google cloud sdk
|
|
# export FILENAME=google-cloud-cli-430.0.0-linux-x86_64.tar.gz
|
|
# [ ! -f $FILENAME ] && axel -k https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/$FILENAME
|
|
# tar -xvzf $FILENAME
|
|
# /work/google-cloud-sdk/install.sh -q
|
|
# # Add gcloud to PATH
|
|
# source /work/google-cloud-sdk/path.bash.inc
|
|
# echo "source /work/google-cloud-sdk/path.bash.inc" >> ~/.bashrc
|
|
|
|
# Start BigQuery emulator
|
|
/bin/bigquery-emulator --log-level=debug --project=bks --data-from-yaml=/data/world.yaml
|