Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 764 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 764 Bytes

Chat50 Server

Python application Gitpod Ready-to-Code

A Python chat server using Flask and Socket.IO.

Checkout the frontend at: https://github.com/michaelpaul/chat50-ui

Local Development

Run the commands from .gitpod.yml to setup the environment and then run:

  • docker-compose up - Start backing services
  • heroku local - Start the app

Test

  • pip install '.[test]'
  • pytest

Run with coverage report::

  • coverage run -m pytest
  • coverage report
  • coverage html - open htmlcov/index.html in a browser