如何在 heroku 上托管我的 discord.py 机器人?

How do I host my discord.py bot on heroku?(如何在 heroku 上托管我的 discord.py 机器人?)
本文介绍了如何在 heroku 上托管我的 discord.py 机器人?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我目前正在尝试将我的 discord 机器人安装到 Heroku 并 24/7 全天候托管它,但我遇到了问题.

  1. 我将我的机器人上传到了 github ,用记事本打开它并写入 worker: python name_of_bot_file.py 并保存在同一个存储库中

  1. 创建一个名为 runtime.txt 的文本文件并粘贴 python-3.6.5 或您用于编写机器人的任何 python 版本并将其保存在相同的存储库.

  2. (如果您在 virtualenv 中,请退出)打开控制台并编写 heroku login 并输入您的 heroku 登录详细信息

  3. 然后执行 heroku apps:create name_of_appheroku buildpacks:set heroku/python

  4. 最后,如果你只想推送一个分支,请执行 git push heroku maingit push heroku branch_name:main

I am currently trying to get my discord bot on to Heroku and host it 24/7 but I am having problems.

  1. I uploaded my bot to github https://github.com/zemocode/flankebot/tree/master

  2. I have created the two main files I needed

  3. I clicked deploy branch on Heroku and I'm getting this error.

 !     No default language could be detected for this app.
            HINT: This occurs when Heroku cannot detect the buildpack to use for this application automatically.
            See https://devcenter.heroku.com/articles/buildpacks
 !     Push failed

I have followed tutorials but everyone else has node.js and I so mine doesn't work.

解决方案

You're missing a couple of things to make this work, for the sake of everyone Googling how to host discord.py on Heroku and getting this as the top result here's a step-by-step

  1. Install Git and do git init when inside your directory
  2. (If you're using virtualenv or similar go into it and) do pip freeze then copy the contents you get to a file called requirements.txt and save it in the same repository as the bot
  3. Make a file (a file of type file) , open it with notepad and write worker: python name_of_bot_file.py and save within the same repository

  1. Make a text file called runtime.txt and paste python-3.6.5 or whichever python version you were using to write the bot and save it in the same repository.

  2. (If you're inside virtualenv get out and) open your console and write heroku login and input your heroku login details

  3. Then do heroku apps:create name_of_app and heroku buildpacks:set heroku/python

  4. Finally, do git push heroku main or git push heroku branch_name:main if you want to only push one branch

这篇关于如何在 heroku 上托管我的 discord.py 机器人?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)