Merge pull request #2287 from return42/fix-make-run

[fix] make.run - use SEARX_DEBUG=1 instead of modifing settings.yml
This commit is contained in:
Noémi Ványi 2020-10-31 16:51:20 +01:00 committed by GitHub
commit d553de4909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -66,13 +66,10 @@ clean: pyclean docs-clean node.clean test.clean
PHONY += run
run: buildenv pyenvinstall
$(Q) ( \
sed -i -e "s/debug : False/debug : True/g" ./searx/settings.yml ; \
sleep 2 ; \
xdg-open http://127.0.0.1:8888/ ; \
sleep 3 ; \
sed -i -e "s/debug : True/debug : False/g" ./searx/settings.yml ; \
) &
$(PY_ENV)/bin/python ./searx/webapp.py
SEARX_DEBUG=1 $(PY_ENV)/bin/python ./searx/webapp.py
# docs
# ----