-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,9 @@ set -ex | |
# sudo apt install posgresql-client-common | ||
# sudo apt install postgresql-client-16 | ||
|
||
|
||
CONNECTION=postgres://postgres:[email protected]:5432/postgres | ||
# CONNECTION=postgres://postgres:[email protected]:5432/postgres | ||
# Note: To get equivalent performance you should be runnign from | ||
# AWS US-EAST-1 region or as close to there as possible. Otherwise | ||
# you'll see additional latency. | ||
|
||
# Sign up for MotherDuck. | ||
# Go to the web ui and obtain a token | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# Your docker may be set up to use localhost instead, if so | ||
# edit the ip address below. | ||
CONNECTION=postgres://postgres:[email protected]:5432/postgres | ||
PSQL=psql | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
#!/bin/bash | ||
|
||
TRIES=3 | ||
# Your docker may be set up to use localhost, if so edit ip address | ||
# below. | ||
CONNECTION=postgres://postgres:[email protected]:5432/postgres | ||
|
||
DATABASE='ddb$pgclick' | ||
|