3

我在让我的 react /rails 应用程序在 heroku 上工作时遇到问题。我已经成功部署了它,并且 rails 服务器启动了,但是我没有看到我的 react 应用程序。我觉得我很接近,但无法弄清楚缺少什么。

所以我的流程目前是npm run build从客户端目录本地运行,该目录在客户端中构建一个“构建”目录。然后我提交构建结果并使用git push heroku master.

然后我在浏览器中导航到 heroku 应用程序,在那里我只得到一个空白页,这是一个索引文件,我手动从构建目录复制到公共。我不确定索引文件是否正确,但我只是想确保我能打到什么。

最终,我只想推送 repo,它会自动运行构建。我在各个地方都看到过这个,但是当我npm run build在服务器上运行时,我总是得到一个 react-script does not exist 错误。

我的配置如下:

应用程序的基本结构

/app - root of Rails app
/client - root of React app
/public - does display index page

根/客户端/package.json

{
    "name": "qc_react",
    "version": "0.1.0",
    "private": true,
    "devDependencies": {
        "react-scripts": "^0.8.4"
    },
    "dependencies": {
        "react": "^15.4.1",
        "react-dom": "^15.4.1",
        "react-router": "^3.0.0"
    },
    "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test --env=jsdom",
        "eject": "react-scripts eject"
    },
    "cacheDirectories": [
        "node_modules",
        "client/node_modules"
    ],
    "proxy": "${API_URL}:${PORT}/v1/"
}

根/package.json

{
  "name": "web",
  "version": "1.0.0",
  "description": "This repo contains a web application codebase. Read instructions on how to install.",
  "main": "index.js",
  "scripts": {
    "build": "cd client" # not sure what to put here but this gets me past build failure
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://myrepo.git"
  },
  "author": "",
  "license": "ISC",
  "homepage": "https://myhomepage#readme"
}

档案

api: bundle exec puma -C config/puma.rb

构建包

1. https://github.com/mars/create-react-app-buildpack.git
2. heroku/ruby

配置/puma.rb

workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 5)
threads threads_count, threads_count

preload_app!

rackup      DefaultRackup
port        ENV['PORT']     || 3001
environment ENV['RACK_ENV'] || 'development'

on_worker_boot do
  # Worker specific setup for Rails 4.1+
  # See: https://devcenter.heroku.com/articles/deploying-rails-applications-with-the-puma-web-server#on-worker-boot
  ActiveRecord::Base.establish_connection
end
4

3 回答 3

3

这是因为 Rails 提供静态文件(index.html包括/public. 但是您的 React 应用程序包位于/client/build. 构建后,您需要将这些文件复制回 Rails 文件夹。最简单的方法是将一些脚本添加到您的package.json

"scripts": {
  ...
  "deploy": "cp -a build/. public",
  "heroku-postbuild": "npm run build && npm run deploy"
},

heroku-postbuild在安装所有依赖项后由 Heroku 自动执行,就像普通的postinstall钩子一样。

注意cp命令的路径。您使用 2 个不同package.json文件的设置太复杂了。我建议使用单个package.json内部根并相应地设置所有路径。

于 2017-05-10T20:12:21.817 回答
2

所以我终于找到了我正在寻找的解决方案。我的代码库具有以下结构。

app/
client/
public/
...

我目前正在按照上面的@yeasayer 建议构建我的客户端解决方案。在构建我的 react 项目并将其部署到我的 rails api 中的公用文件夹后,我将以下内容添加到我的路由中:

... # api routes ...

get '/*path', to: 'react#index'

然后我创建了一个 react_controller 并添加了以下内容:

class ReactController < ActionController::Base
  def index
      render :file => 'public/index.html', :layout => false
  end
end

现在,任何未被 api 路由捕获的路由都将呈现 react 应用程序。我不确定为什么其他人不使用这种结构而不是使用 react_on_rails 或其他插件来实现相同的结果。这种设置比处理这些其他解决方案要简单得多,但我想听听关于为什么这个解决方案不是一个好主意的任何想法。

于 2017-06-28T14:25:36.687 回答
0

我看到您正在使用 create-react-app-buildpack,但我认为您的问题是您的反应应用程序位于子目录中。只有当 heroku 可以在目录中检测到匹配的应用程序时,Buildpacks 才会执行,并且由于根目录中的 package.json 与 create-react-app-buildpack 不匹配,我认为它没有被使用。

您可能会尝试删除根 package.json 并使用此子目录 buildpack以便您可以指定每个 buildpack 目录的位置

于 2017-01-22T02:35:29.777 回答