aboutsummaryrefslogtreecommitdiff
path: root/.newsstandrc.toml.example
diff options
context:
space:
mode:
authorAlexander Kavon <hawk@alexkavon.com>2023-11-28 18:32:19 -0500
committerAlexander Kavon <hawk@alexkavon.com>2023-11-28 18:32:19 -0500
commit1597c23f84346dfa44da9605286863b11006bdb5 (patch)
tree78a2abbefc1bbcc9a13691e09ac252b5400a5b00 /.newsstandrc.toml.example
parent629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (diff)
added migrations via tern, updated db package to connect to pgsql db, updated config to build db connection string, updated example .newsstand.toml config, new pgx dependency
Diffstat (limited to '.newsstandrc.toml.example')
-rw-r--r--.newsstandrc.toml.example5
1 files changed, 4 insertions, 1 deletions
diff --git a/.newsstandrc.toml.example b/.newsstandrc.toml.example
index 0b12f95..7b35ccc 100644
--- a/.newsstandrc.toml.example
+++ b/.newsstandrc.toml.example
@@ -1,7 +1,10 @@
[database]
adapter = "postgresql"
+hostname = "localhost"
+port = "5432"
user = "newsstand"
-pass = "newsstand"
+secret = "newsstand"
+dbname = "newsstand"
[server]
port = "8080"