Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.44 KB

README.md

File metadata and controls

38 lines (25 loc) · 1.44 KB

deploy-demo-bot

Hello everyone!

As I've promised, the following are the steps to run and deploy your Telegram bots to Heroku.

Enjoy!

PS. If you have any questions, either PM me on Telegram or just open an issue right here!

First Steps - Git

You might want to learn what a git is 😌.

I believe, this tutorial can make things a lot easier for starters.

The first thing you should do is to create your own repository on GitHub:

  1. Login
  2. Press the + button at the top.
  3. To make things easier, opt-in to include a README file when prompted.
  4. Follow the steps there.
  5. Clone the repository via $ git clone <your url> (without <>).

Your First Lines of Code with Github

After you've cloned the repo, move to the folder of your project in Terminal. Do: $ cd <project folfer>.

Then create or copy your code in there. We will create ours from scratch:

  1. $ touch bot.py
  2. $ vim bot.py (you might wanna google about using vim 🤪)
  3. Edit your code and save it.
  4. Add your changes to git: $ git add bot.py. (Make sure you've configured your git. If not, follow these steps.)
  5. Create your commit message: $ git commit -m 'Your Message Goes Here 😏'.
  6. Upload (push) your changes to GitHub: $ git push. Here git will ask for your credentials - enter them.