Skip to content
Snippets Groups Projects
Unverified Commit cd8b73aa authored by reivilibre's avatar reivilibre Committed by GitHub
Browse files

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: default avatarOlivier Wilkinson (reivilibre) <oliverw@matrix.org>

---------

Signed-off-by: default avatarOlivier Wilkinson (reivilibre) <oliverw@matrix.org>
parent 53aa26ed
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,7 @@ __pycache__/ ...@@ -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
......
Fix the `devenv up` configuration which was ignoring the config overrides.
\ No newline at end of file
...@@ -178,7 +178,7 @@ ...@@ -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.
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment