Reputation: 45052
Can I deploy Gatsby static pages on Godaddy server? I am not sure if that's possible.
Upvotes: 3
Views: 2851
Reputation: 45052
I end up building my own framework with ReactJS
, now all I have to do is execute
npm run build
to create an optimized build in build directory
Upload the zip file from build folder into public html
Right click to unzip it and we are good to go
See the live demo http://hiteshsahu.com/topics
Upvotes: 0
Reputation: 424
If you want to deploy your static website on a normal server without CI, you can run
gatsby serve -p 80 -H <your private IP address>
. Replace with the IP address you get from ifconfig
on linux or ipconfig
on windows.
Upvotes: 1