Telegram Chatbot Tutorial with Python Flask
교육영상 : 동영상 URL 을 참고하시면 됩니다.
Google Firebase Document : https://firebase.google.com/docs/reference/admin/python
Heroku CLI(Command Line Interface) 설치 Install Heroku CLI
만약 Git이 설치 되어있지 않다면 Install Git
Ngrok 실행화면 Ngrok 다운
ngrok http 5000 --region ap
tuto01 에 있는 telegram.py 를 수정
API_KEY = Telegram Bot ACCESS Key
WEBHOOK URL = Ngrok forwarding HTTPS URL
실행할 파일 tuto02~05에 있는 app.py 실행
python app.py
app.py 실행 로그
Running on http://127.0.0.1:5000/
Heroku CLI에서 사용 [ 내용은 해당 내용을 ]
>> heroku login
>> cd tuto00(Heroku)
>> git init
>> git add .
>> heroku git:remote -a [Heroku 저장소 이름]
>> git add .
>> git commit -m "[코맨트]"
>> heroku buildpacks:set heroku/python
>> git push heroku master
>> heroku ps:scale web=1
- Telegram - Message Platform
- Flask - The web framework used
- Heroku - Deploy Management
- ngrok - Deploy Test
- LeeJunho - Initial work - Panic
This project is licensed under the MIT License - see the LICENSE.md file for details