first commit

This commit is contained in:
2026-03-07 21:31:38 +03:00
commit a879ba7b50
68 changed files with 2487 additions and 0 deletions

12
README.md Normal file
View File

@@ -0,0 +1,12 @@
# Benya Messenger
Backend foundation for a Telegram-like real-time messaging platform.
## Run
1. Create and activate Python 3.12 virtualenv.
2. Install dependencies:
pip install -r requirements.txt
3. Configure environment from `.env.example`.
4. Start API:
uvicorn app.main:app --reload --port 8000