0

I'm very new to this.

I've made a bot for discord and now i want it to play music from YouTube, without having to put in a link.

I'm using Heroku and am getting several errors, that I really need help with.

I have tried pushing it several times, but I'm unsure what else can do.

Error when pushing heroku

When i try searching for a youtube song

Dynos

Hope someone can help me :)

  • 2
    Welcome to Stackoverflow! Please take the time to absorb [SO's recommendations](https://stackoverflow.com/help/how-to-ask) addressed to new users. You may take the [tour]; then do read [what's on-topic here](/help/on-topic) and provide a [mre]. – stvar Dec 04 '20 at 13:24
  • @stvar I'm only using cmd, git bash and heroku. Made the bot in discord bot maker. I'm not familiar with any other programs, so i'm unsure how to post this differently? – Disa Sveinsdottir Dec 04 '20 at 13:49

1 Answers1

0

It looks like you may have forgotten to write the dyno to tell Heroku what to run. Try adding a Procfile to your project and name it "worker: node index.js". From what I understand, your second message says "missing script: start".

SatvikVejendla
  • 424
  • 5
  • 14