Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# spot for [/e/](https://e.foundation)
![logo](searx/static/themes/eelo/img/favicon.png)
A privacy-respecting, hackable [metasearch engine](https://en.wikipedia.org/wiki/Metasearch_engine).
Spot was forked from searx: read [documentation](https://asciimoo.github.io/searx) and the [wiki](https://github.com/asciimoo/searx/wiki) for more information.
## Changes between Spot and Searx
* eelo theme
* docker packaging thinking to be production ready
* better locale support
## Getting Started
You can run spot with docker-compose. First of all you have to install
docker and docker-compose on your host, then follow instructions
below to run spot for production or local environment.
### Like production
3 containes are used for production, traefik as edge router,
nginx to server static files and spot as backend.
* Run the docker-compose up command to start the project
```
docker-compose up --build spot nginx
```
* Getting the ip of the nginx service and go to `http://<nginx-ip>`, below the docker way to get the IP of the nginx container
```
docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' my-spot_nginx_1
```
### For developer
You can directly run spot, with a python command inside a docker container which
contains all dependencies.
```
docker run -it --rm -v $(pwd):/ws -w /ws registry.gitlab.e.foundation:5000/e/cloud/my-spot/env sh
SEARX_DEBUG=1 python -X dev searx/webapp.py
```
Then go open your browser and navigate to the container IP.