https://github.com/lukefx/telegram-photoframe
Telegram-photoframe is a React application that uses TDLib and is in fact a telegram client that displays Photos in a selected group, channel or chat.
https://github.com/lukefx/telegram-photoframe
javascript react reactjs tdlib tdweb telegram telegram-api
Last synced: 12 months ago
JSON representation
Telegram-photoframe is a React application that uses TDLib and is in fact a telegram client that displays Photos in a selected group, channel or chat.
- Host: GitHub
- URL: https://github.com/lukefx/telegram-photoframe
- Owner: lukefx
- Created: 2021-01-15T15:57:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T13:17:57.000Z (about 5 years ago)
- Last Synced: 2025-03-28T17:35:36.493Z (about 1 year ago)
- Topics: javascript, react, reactjs, tdlib, tdweb, telegram, telegram-api
- Language: JavaScript
- Homepage:
- Size: 21 MB
- Stars: 21
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Telegram-Photoframe

Telegram photoframe is a Web application that uses telegram to display your prefered group or channel as Photoframe.
The app is in fact a telegram client and doesn't require any bot, just login with your mobile phone via QR code and select
the group or conversation that you want to display.
# Internals
The app is a React application that uses [TDLib](https://github.com/tdlib/td#readme), specifically the wasm version called [tdweb](https://www.npmjs.com/package/tdweb).
# How to deploy your own version
To deploy your own version login here and create an app: https://core.telegram.org/api/obtaining_api_id
Then copy the two keys in the .env file by following the example of .env.example
To run the app locally, install all the dependencies:
```
npm i
```
Copy the tdweb wasm files to a loadable path for your app, we use public:
```
cp node_modules/tdweb/dist/ ./public
```
The start the app:
```
npm start
```
To build a static version run:
```
npm run build
```
To deploy the app, modify the `PUBLIC_URL` in package.json and deploy it to GitHub pages for free:
```
npm run deploy
```