summarylogtreecommitdiffstats
path: root/bookmark.toml.sample
blob: 8e4bea452cd37b7d6e519b697b1fd4fac46062a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Bookmarks allow you to keep connection settings to your most frequent servers
# with credentials stored in a file on your local filesystem, encoded as TOML.

# Here's an example of a bookmark file (/etc/pgweb/server.toml):
host = "localhost"
port = 5432
user = "postgres"
database = "mydatabase"
ssl = "disable"

# To keep things short, you can just define an url:
url = "postgres://user:password@host:port/database?sslmode=mode"