- Get the
.data
folder with the latest data (db and media files) - Get the
.envs
folder with the env vars - Build the images with
docker-compose build
- Run the containers with
docker-compose up
- 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'); }
- Check the browser console output and containers logs
- Build the frontend application to run parsers and display progress
- Handle the errors across the application (use
try-except
where needed) - Write more parsers