部署到 google 应用引擎失败

Deploying to google app engine failed

我正在尝试使用 https://wiki.js.org/

部署应用

在本地设置完所有内容后,然后尝试部署到我们的 App Engine 项目,它会执行动作并说它是更新服务,这是最后一步。

大约一分钟后,我将收到以下回复:

Updating service [default] (this may take several minutes)...failed.
ERROR: (gcloud.app.deploy) Error Response: [9]
Application startup error:

> wiki@1.0.78 start /app
> node wiki start

\u2714 Wiki.js has started successfully.

这是我的app.yaml

runtime: nodejs
env: flex

这是 "start" 脚本的 package.json 部分

{
  "name": "wiki",
  "version": "1.0.78",
  "description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
  "main": "wiki.js",
  "scripts": {
    "start": "node wiki start",
    "stop": "node wiki stop",
    "restart": "node wiki restart",
    "build": "node tools/fuse",
    "dev": "node tools/fuse -d",
    "dev-configure": "node tools/fuse -c",
    "test": "jest",
    "postinstall": "opencollective postinstall"
  },

在我的本地环境中,启动此应用程序的过程是 run node wiki start,但 npm start 也做同样的事情。

我有 GCP 支持。我们已经多次重现该问题,但它看起来不像是 App Engine 问题,而是与 wiki.js 有关的问题。我们只有少数第三方库 officially supported 而这不是其中之一。

无论如何,我已经尝试通过多种方式解决问题,并且我在 github 中找到了两个建议(即使 none 对我有用):

解决方案 1

扩展内存,将以下行添加到 app.yaml 文件 1

 resources:
     cpu: 2
     memory_gb: 4.0
     disk_size_gb: 20

解决方案 2

将以下行添加到 app.yaml:

health_check:
        enable_health_check: False

试试吧,祝你好运!