在同一存储库的前端和后端的github页面上部署React应用

时间:2018-10-24 13:00:44

标签: reactjs github deployment

我正在尝试将带有后端的React应用程序部署到github页面上的同一存储库中。一切正常,直到我添加了后端代码。我可以部署前端,但无法弄清楚如何将后端部署到github。 在我的package.json中,我有以下内容:

....
    "scripts": {
    "start": "react-scripts start",
    "server": "nodemon server.js",
    "client": "npm run start --prefix client",
    "dev": "concurrently \"npm run server\" \"npm run client\""
  }
...

我已将其推送到github。已安装gh-pages软件包。 我已添加

"homepage" : "https://[your-user-name].github.io/[your-repo-name]/"
“predeploy”:
“deploy”:

我认为这是我要出问题的地方。我知道应该指定什么预部署和部署,但是我尝试输入上千个不同的版本,但出现错误。

1 个答案:

答案 0 :(得分:1)

Github页面将不执行任何服务器端代码。您只能上传静态文件(html,css,js,图像等)。

要拥有托管后端,您应该寻找其他服务,例如Google Cloud,AWS Lambda,Heroku等。