Ever wanted to explain something, and it was easier to draw it?
"Wait a moment, let me draw that"
- 👋 Host a room.
- 🤝 Invite others.
- 💡 Share ideas.
- 🎨 Not everyone present? Play a drawing guessing game while waiting.
Requirements:
- app.py
- Files in folder 'src'
- Files in folder 'static'
- Files in folder 'templates'
Dependencies:
pip install Flask
pip install flask-socketio
Running:
- Navigate via command line to the folder containting app.py
- Type 'python app.py'
- In the browser enter {localip}:{port}
Port is 8000 by default.
You can check your local ip by running 'ipconfig' in the command line.
- Navigate to the folder containing 'Dockerfile' and build the image
docker build -t lemme-draw-that .
- Run the container
docker run --rm -p 8000:8000 -e PORT=8000 -e PYTHONUNBUFFERED=1 lemme-draw-that
- In the browser enter {localip}:{port}
