https://github.com/pedrofurtado/horoscope-translated-bot-telegram
https://github.com/pedrofurtado/horoscope-translated-bot-telegram
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/pedrofurtado/horoscope-translated-bot-telegram
- Owner: pedrofurtado
- Created: 2023-05-02T19:51:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-03T01:49:52.000Z (almost 2 years ago)
- Last Synced: 2025-01-25T23:55:19.836Z (3 months ago)
- Language: Python
- Homepage: https://horoscope-translated-bot-telegram.vercel.app
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Horoscope Translated Bot Telegram
## Demo
https://horoscope-translated-bot-telegram.vercel.app
## Running Locally
```bash
docker container run --rm -it --name horoscope-translated-bot-telegram -w /srv -v $(pwd):/srv -p 3000:3000 python:3.7 /bin/bash
> python -m venv venv/
> source venv/bin/activate
> pip install -r requirements.txt
> TELEGRAM_BOT_URL=https://horoscope-translated-bot-telegram.vercel.app TELEGRAM_BOT_TOKEN=bot-token flask --app bot/webhook run --port 3000 --host 0.0.0.0 --debug
> TELEGRAM_BOT_URL=https://horoscope-translated-bot-telegram.vercel.app TELEGRAM_BOT_TOKEN=bot-token python bot/polling.py
```Your Flask application is now available at `http://localhost:3000`.