Project iKy – Tool That Collects Information From An Email
Project iKy is a tool that collects information from an email and shows results in a nice visual interface.
Installation
Clone repository
git clone https://gitlab.com/kennbroorg/iKy.git
Install Backend
Redis
You must install Redis
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
sudo make install
Python stuff and Celery
You must install the libraries inside requirements.txt
python3 -m pip install -r requirements.txt
Install Frontend
Node
First of all, install nodejs.
Dependencias
Inside the directory, frontend install the dependencies
cd frontend
npm install
Wake up iKy Tool
Turn on Backend
Redis
Turn on the server in a terminal
redis-server
Python stuff and Celery
Turn on Celery in another terminal, within the directory backend
./celery.sh
Again, in another terminal turn on backend app from directory backend
python3 app.py
Turn on Frontend
Finally, to run frontend server, execute the following command from directory frontend
npm start
Leave a Reply