1

我试图部署一个可以在我的本地 Budo 服务器上完美运行的网站。我正在尝试将其部署到 Google App Engine,但我没有足够的关于 node.js 和 package.json 的知识来指定在 App Engine 上运行我的网站的配置。

我的应用程序在我的 package.json 文件中运行了以下脚本:

"scripts": {
"start": "budo main.js:dist/bundle.js --live --host localhost",
"watch": "watchify main.js -v --debug -o dist/bundle.js",
"prep": "yarn && mkdirp dist",
"build": "browserify main.js -o dist/bundle.js",
"lint": "eslint main.js --fix",
"deploy": "yarn build && uglifyjs dist/bundle.js -c -m -o dist/bundle.min.js"
},

我知道部署服务器的简单命令和 Google Cloud Platform 的周边配置,但我不知道如何更改我的依赖项以在 App Engine 上工作。

当我部署当前设置时,我只会收到 503 连接错误。

那么如何将其移植到可以在生产中使用的设置?

4

0 回答 0