A search engine which is used for search in private networks.
- Python3
- Apache Nutch (For Crawler)
- Apache Solr (For Indexing)
Pre-requestie: python3, nmap
pip3 install urllib3 django bs4 requests subprocess
Clone this repo
git clone https://github.com/thewachdog/searchEngine.git
Navigate into the folder
cd searchEngine
Run main.sh
./main.sh
OR
Use this in Dockerfile (you must have installed openjdk) example Dockefile
FROM openjdk:13
WORKDIR /home
COPY searchEngine/ /home
CMD ['./main.py']build docker image
docker build -t imagename .