diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-03-04 17:14:58 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 17:14:58 +0000 |
commit | 8e28bc5eeecbc2c9130c05e8c8237a546fb4d3ea (patch) | |
tree | b6257afed4b8d90441ee285d425f910e7b5e9060 /synapse/config/database.py | |
parent | Fix v4v6 option in HAProxy example config (#4790) (diff) | |
download | synapse-8e28bc5eeecbc2c9130c05e8c8237a546fb4d3ea.tar.xz |
Include a default configuration file in the 'docs' directory. (#4791)
Diffstat (limited to 'synapse/config/database.py')
-rw-r--r-- | synapse/config/database.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/config/database.py b/synapse/config/database.py index c8890147a6..63e9cb63f8 100644 --- a/synapse/config/database.py +++ b/synapse/config/database.py @@ -49,7 +49,8 @@ class DatabaseConfig(Config): def default_config(self, data_dir_path, **kwargs): database_path = os.path.join(data_dir_path, "homeserver.db") return """\ - # Database configuration + ## Database ## + database: # The database engine name name: "sqlite3" |