summaryrefslogtreecommitdiff
path: root/server/cmd/main.go
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-09-29 15:26:19 -0700
committerMichael Hunteman <michael@huntm.net>2024-09-29 15:26:19 -0700
commitaa8178efceda26110fecd6a605887a1e1573d8c0 (patch)
tree2b82ecae7c0a60f010f7df9fab5b071d613ba3bd /server/cmd/main.go
parent0154a152dd6d3606c9131f3186a9175ee5853185 (diff)
Update database connection
Diffstat (limited to 'server/cmd/main.go')
-rw-r--r--server/cmd/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/cmd/main.go b/server/cmd/main.go
index a180cc4..b57ee30 100644
--- a/server/cmd/main.go
+++ b/server/cmd/main.go
@@ -15,11 +15,11 @@ import (
)
var (
- user = os.Getenv("USER")
+ user = "postgres"
password = os.Getenv("PASS")
host = "localhost"
port = "5432"
- database = "postgres"
+ database = "wedding"
)
func main() {