mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-16 08:39:03 +00:00
Small improvements in indexing
This commit is contained in:
25
README.md
25
README.md
@@ -2,21 +2,34 @@
|
||||
|
||||
Work in progress: probably won't work without some tweaking
|
||||
|
||||
## Running on linux
|
||||
## Setup on Windows
|
||||
```bash
|
||||
git clone https://github.com/simon987/Projet-Web-2018
|
||||
cd Projet-Web-2018
|
||||
```
|
||||
[Download latest elasticsearch version](https://www.elastic.co/downloads/elasticsearch) and extract to `Projet-Web-2018\elasticsearch`
|
||||
|
||||
```bash
|
||||
sudo pip3 install -r requirements.txt
|
||||
|
||||
python3 run.py
|
||||
```
|
||||
|
||||
## Setup on Mac/linux
|
||||
```bash
|
||||
git clone https://github.com/simon987/Projet-Web-2018
|
||||
cd Projet-Web-2018
|
||||
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.zip
|
||||
unzip elasticsearch-6.2.4.zip
|
||||
rm elasticsearch-6.2.4.zip
|
||||
mv elasticsearch-6.2.4 elasticsearch
|
||||
mv elasticsearch-6.2.4 elasticsearch
|
||||
|
||||
sudo pip3 install -r requirements.txt
|
||||
sudo pip3 install -r requirements.txt
|
||||
|
||||
python3 run.py
|
||||
```
|
||||
|
||||
## Running tests
|
||||
```
|
||||
python3 -m unittest discover
|
||||
## Running unit tests
|
||||
```bash
|
||||
python3 -m unittest
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user