From 66dabd7ce5b80b27739bedd17df0fd5ba5ae7c96 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Sat, 21 Apr 2018 22:45:12 -0400 Subject: [PATCH] Create README.md --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..30b76ea --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# Simple incremental search tool + +Work in progress: probably won't work without some tweaking + +## Running on 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 + +sudo pip3 install -r requirements.txt + +python3 run.py +``` + +## Running tests +``` +python3 -m unittest discover +```