A simple anonymous chat
This is a small app that simply works using Django as API, socket.io as comunication protocol and Angular as frontend single page web app. I'm using sqlite as database for the app but any SQL database may work as well.
Most of the comunication is over /socket.io/ endpoint.
- (Optional) prepare virtualenv with pipenv
- Install dependencies:
pip install -r requirements.txt
- Run app:
python manage.py runserver
- Open
localhost:8000
in web browser
this app is not ment to be production ready