Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T10:51:15.000Z (about 3 years ago)
- Last Synced: 2024-05-28T06:57:41.740Z (6 months ago)
- Topics: heroku, java, spotify, spring-boot, telegram-bot, youtube
- Language: Java
- Homepage: https://t.me/ytspot_bot
- Size: 71.3 KB
- Stars: 10
- 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)