To deploy this on Heroku #225
-
Hi there! Here is log details
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @wahajsaleem, not sure how you are deploying your app to Heroku, but I just tried using Heroku Git and had no issues: First install Heroku CLI and then: $ git clone https://github.com/ditdot-dev/vue-flow-form.git
$ cd vue-flow-form
$ git checkout test/heroku
$ npm install
$ npm run build
$ heroku login # if you haven't logged in yet
$ heroku buildpacks:add heroku/nodejs --app <app_name>
$ heroku buildpacks:add https://github.com/heroku/heroku-buildpack-static --app <app_name>
$ heroku git:remote -a <app_name>
$ git push heroku test/heroku:main <app_name>.herokuapp.com should now be working. |
Beta Was this translation helpful? Give feedback.
Hi @wahajsaleem,
not sure how you are deploying your app to Heroku, but I just tried using Heroku Git and had no issues:
First install Heroku CLI and then:
<app_name>.herokuapp.com should now be working.