有没有办法在Github页面上托管我的React项目的主分支,同时继续在其他分支(例如开发)中工作?
P.S:我是在Github上托管React的新手。如果您能提供深入的解释或将我引向一些详细的资源,我将非常感谢。非常感谢!
答案 0 :(得分:1)
By default,将仅发布您仓库的@RestController
@ConditionalOnProperty(value = "app.running-mode.read-write",havingValue = "true", matchIfMissing = true)
class MyRestController(private val r : MyRestService){
@GetMapping
// some endpoint here
@PostMapping
// some endpoint here
}
分支,并且它可以与您的其他开发完全独立。
快速浏览一下,https://dev.to/yuribenjamin/how-to-deploy-react-app-in-github-pages-2a1f看起来像是一个使用Create React App部署React应用程序的很好的教程。 Create React App文档也有一个关于部署的部分。 https://create-react-app.dev/docs/deployment