kaliiiiiiiiii / CatRoom

A simple chatroom (school project)

Home Page:https://kaliiiiiiiiii.github.io/CatRoom/cat_room/static/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CatRoom

register demo-page

Dependencies

Startup server

(assumes git-cli is installed)
download and install requirements with

git clone https://github.com/kaliiiiiiiiii/CatRoom.git
cd CatRoom
python -m pip install --upgrade -r requirements.txt

start server
(serves on all interfaces => LAN//WLAN)

python main.py

or from python:

from cat_room.serve import Server

if __name__ == "__main__":
    server = Server(port=80, host="localhost")
    server.serve()

this serves on localhost only. To expose the port to LAN//WLAN, use host="0.0.0.0" instead

then, open localhost to view the chatroom

Example screenshots

Desktop

Mobile

Authors

  • Aurin Aegerter (aka Steve)
  • Micha

About

A simple chatroom (school project)

https://kaliiiiiiiiii.github.io/CatRoom/cat_room/static/

License:MIT License


Languages

Language:JavaScript 47.5%Language:Python 35.2%Language:CSS 13.7%Language:HTML 3.6%