bratushka / aksh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AKSh

Setup

  1. Get the .data folder with the latest data (db and media files)
  2. Get the .envs folder with the env vars
  3. Build the images with docker-compose build

Run parsers

  1. Run the containers with docker-compose up
  2. From a browser console run:
    {
        const ws = new WebSocket('ws://localhost:8001/acts/ws/');
        ws.onmessage = ({data}) => console.log(JSON.parse(data));
        ws.onopen = () => ws.send('hello');
    }
  3. Check the browser console output and containers logs

Roadmap

  1. Build the frontend application to run parsers and display progress
  2. Handle the errors across the application (use try-except where needed)
  3. Write more parsers

About


Languages

Language:Python 94.9%Language:Dockerfile 5.1%