https://github.com/seadclub/tgbot
SEAD Club's helper tg bot
https://github.com/seadclub/tgbot
backend backend-development backendapp docker go golang golang-application telegram telegram-bot telegram-bot-api telegram-bot-app telegram-bots telegram-go telegram-go-bot tg tgbot
Last synced: about 2 months ago
JSON representation
SEAD Club's helper tg bot
- Host: GitHub
- URL: https://github.com/seadclub/tgbot
- Owner: seadclub
- License: mit
- Created: 2023-09-08T16:19:43.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-14T19:14:36.000Z (over 2 years ago)
- Last Synced: 2026-01-12T02:46:53.794Z (6 months ago)
- Topics: backend, backend-development, backendapp, docker, go, golang, golang-application, telegram, telegram-bot, telegram-bot-api, telegram-bot-app, telegram-bots, telegram-go, telegram-go-bot, tg, tgbot
- Language: Go
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SEAD Club's helper tg bot
###
###
## Project structure
```go
.
├── bot
│ ├── bot.go
│ ├── keyboards.go
│ └── vars.go
├── Dockerfile
├── go.mod
├── go.sum
├── LICENSE
├── main.go
└── README.md
```
## Installation
```sh
git clone https://github.com/seadclub/seadclub-bot
```
## Usage
- Run it using docker:
- You need to paste your api keys in Dockerfile:
```env
ENV TELEGRAM_API_TOKEN=YOUR_API_TOKEN
```
- Run it:
```sh
docker build -t your_image_name .
docker run -d -p 8080:80 your_image_name
```
- Run it without docker:
- You need to **create .env file** with env variables
- And you need to **UNCOMMENT** the following lines in bot.tg:
```go
// "github.com/joho/godotenv"
```
```go
// err := godotenv.Load("../.env")
// if err != nil {
// fmt.Println("[ERROR] error loading .env file")
// log.Panic(err)
// }
```
- Run it:
```sh
go run main.go
```
## Contributing
- Pull requests are welcome, for major changes, please open an issue first to
discuss what you would like to change.
## License
- [MIT](https://choosealicense.com/licenses/mit)