Is a bad idea to use Github Pages for a production ready app?
Dídac

Dídac @sabatesduran

About: I like Linux, making, coding and do this things with coffee also film photography as hobbie. Full stack developer.

Location:
Barcelona, Catalonia
Joined:
Feb 22, 2017

Is a bad idea to use Github Pages for a production ready app?

Publish Date: Nov 14 '17
7 5

I'm trying to not spend money on hosting for a react app and I found this package:

  • gh-pages: Publish files to a gh-pages branch on GitHub (or any other branch anywhere else)

By adding this script you can build and push the code directly to gh-pages and publish your app in seconds:

"scripts": {
  "deploy": "gh-pages -d build"
}
Enter fullscreen mode Exit fullscreen mode

Do you think is a bad idea to use Github pages as production?

Comments 5 total

  • Eldlabs
    EldlabsNov 14, 2017

    It also depends on where in "production" phase you are with your app. Is this something that is close to an MVP or some kind of start up product that you are testing and have lett than few hundreds of users / customers, I would say it is ok. But if this is some kind of enterprise product you are building I would suggest to think twice.

  • Salvador Montiel
    Salvador MontielNov 14, 2017

    I think that just to test is fine but for production do not.

  • Ryoji Ishii
    Ryoji IshiiNov 15, 2017

    I'm using app.netlify.com/ to hosting react apps.

Add comment