https://github.com/nextlevelshit/telegram-bot-freifahren
Privacy-protecting Bot for anonymous messaging in Telegram Channels
https://github.com/nextlevelshit/telegram-bot-freifahren
Last synced: over 1 year ago
JSON representation
Privacy-protecting Bot for anonymous messaging in Telegram Channels
- Host: GitHub
- URL: https://github.com/nextlevelshit/telegram-bot-freifahren
- Owner: nextlevelshit
- Created: 2019-06-08T15:39:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-22T05:13:02.000Z (over 4 years ago)
- Last Synced: 2025-01-20T22:41:51.960Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Telegram Bot
Privacy-protecting Bot for anonymous messaging in Telegram Channels
## Getting Started
### Rquirements
- [Install **Node.js** via package manager](//nodejs.org/en/download/package-manager/)
### Download/Clone Repository
```bash
# Via SSH
git clone git@github.com:nextlevelshit/telegram-bot-freifahren.git
# Via HTTPS
git clone https://github.com/nextlevelshit/telegram-bot-freifahren.git
```
### Install Dependencies
```bash
yarn
# Or with npm (default)
npm i
```
### Configuration
Copy `./config.example.json` to `./config.json` and fill in your person configurations.
```js
{
"telegram": {
"token": "", // Telegram Bot Token
"chat": {
"id": "-100", // ID of the Chat
"username": "" // Username of the Chat
}
}
}
```
### Running the script
```bash
node index.js
```
Or if you prefer to use a process manager, for instance PM2:
```
pm2 start index.js
```