summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2020-06-03 00:15:46 -0400
committerBen Burwell <ben@benburwell.com>2020-06-03 00:15:46 -0400
commitb80c7640295bb7db57e91461d2aae4d8377f20a6 (patch)
tree1b7a43e186de04a7a0f708ed2a044167dd3c6cb8 /Makefile
parentf3e0b43b6b2c8f1a2fee3468100b2d926fad7284 (diff)
Specify the database connection in CLI argsHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e12d79d..53e0529 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ $(BINARY): $(SOURCES)
.PHONY: run
run: $(BINARY)
- ./$(BINARY) 2>>/tmp/pgqt.log
+ ./$(BINARY) postgres://postgres:password@localhost/postgres?sslmode=disable 2>>/tmp/pgqt.log
.PHONY: clean
clean: