testing pull

This commit is contained in:
kvan7 2023-10-30 15:26:05 +00:00
parent 526d5c7b30
commit 3813895e0d
2 changed files with 42 additions and 31 deletions

View file

@ -1,31 +1,42 @@
{ {
"build": { "build": {
"dockerfile": "Dockerfile" "dockerfile": "Dockerfile"
}, },
"features": { "features": {
"ghcr.io/devcontainers/features/github-cli": {} "docker-in-docker": {
}, "version": "latest",
"customizations": { "moby": true,
"vscode": { "dockerDashComposeVersion": "v1"
"extensions": [ }
"ms-python.python", },
"ms-azuretools.vscode-docker" "customizations": {
], "vscode": {
"remote.otherPortsAttributes": { "extensions": [
"protocol": "https" "ms-python.python",
}, "ms-azuretools.vscode-docker"
"settings": { ],
"files.autoSave": "off", "remote.otherPortsAttributes": {
"python.defaultInterpreterPath": "/workspaces/searxng/local/py3/bin/python3", "protocol": "https"
"python.formatting.blackPath": "/workspaces/searxng/local/py3/bin/black", },
"python.linting.pylintPath": "/workspaces/searxng/local/py3/bin/pylint" "settings": {
} "files.autoSave": "off",
} "python.defaultInterpreterPath": "/workspaces/searxng/local/py3/bin/python3",
}, "python.formatting.blackPath": "/workspaces/searxng/local/py3/bin/black",
"forwardPorts": [8000, 8888], "python.linting.pylintPath": "/workspaces/searxng/local/py3/bin/pylint"
"portsAttributes": { }
"8000": {"label": "Sphinx documentation"}, }
"8888": {"label": "SearXNG"} },
}, "forwardPorts": [
"postCreateCommand": "git pull && make install" 8000,
} 8888
],
"portsAttributes": {
"8000": {
"label": "Sphinx documentation"
},
"8888": {
"label": "SearXNG"
}
},
"postCreateCommand": "git pull && make install"
}

View file

@ -1,5 +1,5 @@
export SEARXNG_URL='' export SEARXNG_URL=''
export SEARXNG_PORT='8888' export SEARXNG_PORT='8888'
export SEARXNG_BIND_ADDRESS='127.0.0.1' export SEARXNG_BIND_ADDRESS='127.0.0.1'
export GIT_URL='https://github.com/searxng/searxng' export GIT_URL='https://github.com/kvan7/searxng'
export GIT_BRANCH='master' export GIT_BRANCH='master'