如何在github上正确发布我的React应用程序?

时间:2019-01-14 20:15:57

标签: reactjs github

enter image description here

我正在尝试在github上发布我的react应用程序。以下是我遵循的步骤。

1-我已经在Windows上安装了git。

2-在Visual Studio终端中,我编写了git init

3-然后我在github上创建了一个名为“ cartdemo”的存储库

4-在我的package.json中,我更改了主页,将其设置为false,并添加了“ deploy”:“ gh-pages -d build

5-再次在VS终端中,我编写了git add。

6-git commit -m“上线”

7-git远程添加来源https://github.com/rahman23/cartdemo.git

8-git push

注意:在这里您可以看到文件https://github.com/rahman23/cartdemo

但是,当我点击链接https://rahman23.github.io/cartdemo/时,会得到一个页面,上面写着它

cartdemo

该项目是通过Create React App启动的。

可用脚本

在项目目录中,您可以运行:

npm开始

以开发模式运行应用。

打开http://localhost:3000在浏览器中查看它。

如果您进行修改,页面将重新加载。

您还将在控制台中看到任何皮棉错误。

我在哪里做错了?

1 个答案:

答案 0 :(得分:1)

在步骤8中,您需要告诉git将项目推送到哪个仓库和分支。由于添加了原点,因此...

git push origin master 

由于现在已经推送了项目,请将其添加到package.json文件中。    "homepage" : "http://rahman23.github.io/cartdemo" 然后运行:     yarn build在控制台中,然后尝试再次将其推入...