https://github.com/jitnegii/Telegram-bot
Telegram bot to download songs from Spotify and YouTube URL.
https://github.com/jitnegii/Telegram-bot
heroku java spotify spring-boot telegram-bot youtube
Last synced: 12 months ago
JSON representation
Telegram bot to download songs from Spotify and YouTube URL.
- Host: GitHub
- URL: https://github.com/jitnegii/Telegram-bot
- Owner: jitnegii
- Created: 2020-12-30T08:26:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T10:51:15.000Z (over 4 years ago)
- Last Synced: 2024-11-20T01:33:16.777Z (over 1 year ago)
- Topics: heroku, java, spotify, spring-boot, telegram-bot, youtube
- Language: Java
- Homepage: https://t.me/ytspot_bot
- Size: 71.3 KB
- Stars: 9
- Watchers: 1
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Telegram-bot
Telegram bot to download songs from Spotify and YouTube url.
A spring boot Java app, which can easily be deployed to Heroku.
## Running Locally
Make sure you have Java and Maven installed. Also, install the [Heroku CLI](https://cli.heroku.com/).
```sh
$ git clone https://github.com/jitnegii/Telegram-bot.git
$ cd Telegram-bot
$ mvn clean install -Dbot.token= -Dbot.name= -Dserver.port=
$ heroku local:start
```
Your app should now be running on [localhost:5000](http://localhost:5000/).
## Deploying to Heroku
```sh
$ heroku create
$ heroku config:set TOKEN= NAME=
$ git push heroku master
$ heroku open
```
Note : Make sure you set the TOKEN and NAME correctly.
## Documentation
For more information about using Java on Heroku, see these Dev Center articles:
- [Java on Heroku](https://devcenter.heroku.com/categories/java)