MozhiGraph is an open-source Telegram client with built-in translations. It's currently in active development
git clone https://github.com/MozhiGraph/back-end
git clone https://github.com/MozhiGraph/front-end
cd front-end
npm install
npm run build
cd ../back-end
# setting up a virtual python environment rn is recommended, but optional
pip install -r requirements.txt
The following secrets should be added to .env
file (in back-end)
CLOUDFLARE_ACCOUNT_ID=123123123123123123123
CLOUDFLARE_API_TOKEN=123123123123123123123
TELEGRAM_API_ID=123123123123123123123
TELEGRAM_API_HASH=123123123123123123123
- Run uvicorn by using the command
uvicorn main:app --port 8000
- You will be asked to login, if you have not done so already
- Open
http://localhost:8000
in your browser (or whatever port you used to run uvicorn)