2025-11-13 10:36:09 +01:00
2025-10-02 10:48:30 +02:00
2025-10-30 11:15:23 +01:00
2025-11-13 09:32:13 +01:00
2025-11-13 10:36:09 +01:00
2025-08-26 11:00:37 +02:00
2025-10-30 11:15:23 +01:00
2025-08-03 21:24:12 +02:00

Simple Chat

This is a simple one-room chat application with user management, developed as a school project for study purposes.

Not recommended for production use.

A test protocol can be found here: simple_chat_testprotokoll.pdf

A Project overview can be found here: Perplexity overview

Running with Docker

docker compose -f docker/compose.yml up

Running in Development Mode

With Docker:

BUILD_TARGET=dev docker compose -f docker/compose.yml

Then, install dependencies for the frontend and start the development server:

cd frontend
npm install
npm run dev

For the backend, install dependencies and run the server:

pip install -r simple_chat_api/requirements.txt
DEV=true python -m simple_chat_api

To run tests: python -m unittest discover -s simple_chat_api/tests -p "*.py"

Description
No description provided
Readme 399 KiB
Languages
Python 56.3%
Vue 20%
TypeScript 18.3%
Dockerfile 2.7%
CSS 1.2%
Other 1.5%