I have a few sites I am try to host after linking them to a Github repo. They are relatively simple projects that use jekyll to build. The build phase is failing by timing out after 20 min that shouldn’t take the full time needed. I am new to hosting with Netlify and am unsure of what I need to change to get the deployment to move forward. Help would be appreciated!
Is that happening after the details in the screenshot provided?
The screenshot just seems to show a build that takes around 1 second.
Sorry, that was a screenshot from a successful load for comparison
. Here is the screenshot of the one that fails.
@abelt88 You’re running the wrong command.
See how you’re running bundle exec jekyll serve
.
That’s starting your development server, which you can see it hosts on http://127.0.0.1:4000
.
Don’t do that, you can’t “host a server that way” on Netlify.
Use your build command, which seems to be bundle exec jekyll build
.
See this Support Guide for more information:
https://answers.netlify.com/t/support-guide-can-i-run-a-web-server-http-listener-and-or-database-at-netlify/3078
Thank you!! It worked! I figured it was something simple but I was just not seeing it.