diff options
author | 2021-03-04 14:38:18 +0100 | |
---|---|---|
committer | 2021-03-04 14:38:18 +0100 | |
commit | 052783db664ab529a52026e5a2bbfa2d5ca427d2 (patch) | |
tree | 6d3e4fe6125dc3c481698121f4df0bf3d0f095f0 /example | |
parent | Merge branch 'main' of github.com:gotosocial/server into main (diff) | |
download | gotosocial-052783db664ab529a52026e5a2bbfa2d5ca427d2.tar.xz |
tidying up here and there
Diffstat (limited to 'example')
-rw-r--r-- | example/config.yaml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/example/config.yaml b/example/config.yaml index bc87ecdf4..3fcdc7adb 100644 --- a/example/config.yaml +++ b/example/config.yaml @@ -8,7 +8,7 @@ logLevel: "info" # Default: "gotosocial" applicationName: "gotosocial" -# Config pertaining to the Gotosocial database connection +# Config pertaining to the Gotosocial database connection db: # String. Database type. # Options: ["postgres"] @@ -22,7 +22,7 @@ db: # Int. Port for database connection. # Examples: [5432, 1234, 6969] - # Default: 5432 + # Default: 5432 port: 5432 # String. Username for the database connection. @@ -35,3 +35,8 @@ db: # Examples: ["password123","verysafepassword","postgres"] # Default: "" password: "" + + # String. Name of the database to use within the provided database type. + # Examples: ["mydb","postgres","gotosocial"] + # Default: "postgres" + database: "postgres" |