mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-31 19:59:01 +01:00
Fix the devenv up
configuration which was ignoring the config overrides. (#15854)
* Fix use of config override directory in `devenv up` `--config-directory` is for the generate config script; `-c` is for usage * Add homeserver config override directory to gitignore * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
This commit is contained in:
parent
53aa26eddc
commit
cd8b73aa97
3 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -34,6 +34,7 @@ __pycache__/
|
||||||
/logs
|
/logs
|
||||||
/media_store/
|
/media_store/
|
||||||
/uploads
|
/uploads
|
||||||
|
/homeserver-config-overrides.d
|
||||||
|
|
||||||
# For direnv users
|
# For direnv users
|
||||||
/.envrc
|
/.envrc
|
||||||
|
|
1
changelog.d/15854.misc
Normal file
1
changelog.d/15854.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix the `devenv up` configuration which was ignoring the config overrides.
|
|
@ -178,7 +178,7 @@
|
||||||
EOF
|
EOF
|
||||||
'';
|
'';
|
||||||
# Start synapse when `devenv up` is run.
|
# Start synapse when `devenv up` is run.
|
||||||
processes.synapse.exec = "poetry run python -m synapse.app.homeserver -c homeserver.yaml --config-directory homeserver-config-overrides.d";
|
processes.synapse.exec = "poetry run python -m synapse.app.homeserver -c homeserver.yaml -c homeserver-config-overrides.d";
|
||||||
|
|
||||||
# Define the perl modules we require to run SyTest.
|
# Define the perl modules we require to run SyTest.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue