diff options
| author | Alexander Kavon <hawk@alexkavon.com> | 2023-11-28 18:32:19 -0500 |
|---|---|---|
| committer | Alexander Kavon <hawk@alexkavon.com> | 2023-11-28 18:32:19 -0500 |
| commit | 1597c23f84346dfa44da9605286863b11006bdb5 (patch) | |
| tree | 78a2abbefc1bbcc9a13691e09ac252b5400a5b00 /.newsstandrc.toml.example | |
| parent | 629b0189b7bf20c748a1d37f8803ad0e3ffb8a49 (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.example | 5 |
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" |
