From b80c7640295bb7db57e91461d2aae4d8377f20a6 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Wed, 3 Jun 2020 00:15:46 -0400 Subject: Specify the database connection in CLI args --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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: -- cgit v1.2.3