使用Vue.js将Spring Boot部署到Heroku构建成功,但没有';开始

使用Vue.js将Spring Boot部署到Heroku构建成功,但没有';开始,spring,spring-boot,heroku,vue.js,Spring,Spring Boot,Heroku,Vue.js,我有一个带有Vue.js前端集成的springboot应用程序。我正在尝试将此部署到Heroku 应用程序在Heroku上成功构建,但我看不到Heroku甚至试图启动应用程序的迹象 下面是我使用git push部署时的日志 然后运行heroku日志--tail: ➜ MobstersREST git:(master) ✗ heroku logs --tail (node:12986) [MODULE_NOT_FOUND] Error Plugin: @heroku-cli/plugin-bui

我有一个带有
Vue.js
前端集成的
springboot
应用程序。我正在尝试将此部署到Heroku

应用程序在Heroku上成功构建,但我看不到Heroku甚至试图启动应用程序的迹象

下面是我使用git push部署时的日志

然后运行heroku日志--tail:

➜  MobstersREST git:(master) ✗ heroku logs --tail
(node:12986) [MODULE_NOT_FOUND] Error Plugin: @heroku-cli/plugin-build: Cannot find module 'globby'
module: @oclif/config@1.6.18
task: not loading commands, globby not found
plugin: @heroku-cli/plugin-build
root: /usr/local/Cellar/heroku/7.0.40/libexec/lib/node_modules/heroku/node_modules/@heroku-cli/plugin-build
 ›   Warning: heroku update available from 7.0.40 to 7.0.47
可以找到我的完整项目设置


我正在学习教程。Heroku部分有点模糊

问题是,在
target/my jar file.jar
中查找的默认
Procfile
配置不支持我的项目结构,需要更改我的异常项目结构:
backend/target/my jar file.jar


web:java-jar backend/target/my jar file.jar
在我的应用程序根目录下的
Procfile
中。问题是在
target/my jar file.jar
中查找的默认
Procfile
配置不支持我的项目结构,并且需要为我不寻常的项目结构进行更改:
backend/target/my jar file.jar

web:java-jar backend/target/my jar file.jar
位于应用程序根目录下的
Procfile

➜  MobstersREST git:(master) ✗ heroku logs --tail
(node:12986) [MODULE_NOT_FOUND] Error Plugin: @heroku-cli/plugin-build: Cannot find module 'globby'
module: @oclif/config@1.6.18
task: not loading commands, globby not found
plugin: @heroku-cli/plugin-build
root: /usr/local/Cellar/heroku/7.0.40/libexec/lib/node_modules/heroku/node_modules/@heroku-cli/plugin-build
 ›   Warning: heroku update available from 7.0.40 to 7.0.47