From d3e0667ba0e024b8ce942bff97a0979ccd109599 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Tue, 24 Apr 2018 19:37:38 -0400 Subject: [PATCH 1/2] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1f38c2f..222bc55 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ Work in progress! Shouldn't be used in production environnments. # Installation -Java and python3 are required. +Java and python3 are required. To parse video and audio files, `ffmpeg` needs to be installed Once the web server is running, you can connect to the search interface by typing `localhost:8080` in your browser. ## Setup on Windows ```bash git clone https://github.com/simon987/Simple-Incremental-Search-Tool -cd Projet-Web-2018 +cd Simple-Incremental-Search-Tool ``` [Download latest elasticsearch version](https://www.elastic.co/downloads/elasticsearch) and extract to `Simple-Incremental-Search-Tool\elasticsearch` @@ -38,7 +38,7 @@ python3 run.py ## Setup on Mac/linux ```bash git clone https://github.com/simon987/Simple-Incremental-Search-Tool -cd Projet-Web-2018 +cd Simple-Incremental-Search-Tool wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.4.zip unzip elasticsearch-6.2.4.zip rm elasticsearch-6.2.4.zip From 428780c37aa7d752d56e89f3e46a3b6fe1517ea8 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Sun, 10 Mar 2019 14:21:35 -0400 Subject: [PATCH 2/2] Create .gitignore --- .gitignore | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f82a459 --- /dev/null +++ b/.gitignore @@ -0,0 +1,106 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +.idea/