diff options
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 26 |
1 files changed, 0 insertions, 26 deletions
@@ -83,8 +83,6 @@ PYLINT_OPTIONS="-m pylint -j 0 --rcfile .pylintrc" help() { nvm.help cat <<EOF -buildenv: - rebuild ./utils/brand.env webapp.: run : run developer instance docs.: @@ -155,29 +153,6 @@ webapp.run() { SEARXNG_DEBUG=1 pyenv.cmd python -m searx.webapp } -buildenv() { - - # settings file from repository's working tree are used by default - SEARXNG_SETTINGS_PATH="${REPO_ROOT}/searx/settings.yml" - - if [ -f /etc/searx/settings.yml ]; then - err_msg "settings.yml in /etc/searx/ is deprecated, move file to folder /etc/searxng/" - fi - - if [ -r '/etc/searxng/settings.yml' ]; then - if ask_yn "should settings read from: /etc/searxng/settings.yml"; then - SEARXNG_SETTINGS_PATH='/etc/searxng/settings.yml' - fi - fi - export SEARXNG_SETTINGS_PATH - ( - set -e - SEARXNG_DEBUG=1 pyenv.cmd python utils/build_env.py 2>&1 \ - | prefix_stdout "${_Blue}BUILDENV${_creset} " - ) - return "${PIPESTATUS[0]}" -} - docker.push() { docker.build push } @@ -345,7 +320,6 @@ pyenv.install() { pyenv build_msg PYENV "[install] pip install -e 'searx${PY_SETUP_EXTRAS}'" "${PY_ENV_BIN}/python" -m pip install -e ".${PY_SETUP_EXTRAS}" - buildenv ) local exit_val=$? if [ ! $exit_val -eq 0 ]; then |