From e31ccbbb198bd58a5d291366568c4ea344e79f43 Mon Sep 17 00:00:00 2001 From: ramforth Date: Sun, 16 Nov 2025 16:58:28 +0100 Subject: [PATCH] Start --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ README.md | 5 +++++ main.py | 7 +++++++ requirements.txt | 4 ++++ 4 files changed, 58 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 main.py create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8317887 --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.pyc +*.pyo +*.pyd + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual Environments +venv/ +env/ +.venv/ +.env/ + +# SQLite databases +*.db +*.sqlite +*.sqlite3 + +# Environment variables +.env +.env.* +!.env.example \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..f733fa7 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# MultiChatOverlay + +A multi-user, web-based chat overlay service for streamers on platforms like Twitch and YouTube. + +This service aggregates chat from connected accounts into a customizable browser source for use in streaming software. \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..b07f4d9 --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +from fastapi import FastAPI + +app = FastAPI() + +@app.get("/") +async def read_root(): + return {"message": "MultiChatOverlay API"} \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ed98526 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +fastapi +uvicorn[standard] +sqlalchemy +httpx \ No newline at end of file