-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Consider alternatives to GitHub Pages #4153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Also, jekyll and liquid frustrate everyone endlessly AFAICT. We'd have much better sites in a better system. |
I'm very much in favour of choosing a different/better platform. I'd like to note that learn.openapis.org does also use Jekyll. |
@lornajane yeah spec.openapis.org, learn.openapis.org, and tools.openapis.org are all GitHub Pages/Jekyll/Liquid. While the frustration is most acute with the spec site, it's a problem for the others as well, just in terms of the flexibility of layout and who is able to work on them. |
@handrews @lornajane tools.openapis.org doesn't use Jekyll, it uses Eleventy with Nunjucks. Really easy, JavaScript based, removes the need for any Ruby based hoo-ha. Not especially wedded to GitHub Pages. Used Netlify before, seems good especially given supports a promotional model which is always a good thing IMHO. |
@SensibleWood oh good to know! That explains why the tools site can have that nice panel layout. It never occurred to me to check for some reason. |
GitHub Pages has several very problematic limitations for a project focused on HTTP standards:
Content-Type
except via file extension, which is not how our schemas workThe first two are essential for us, as we want to have our JSON Schemas served as JSON, and we want to have a
latest
resource that uses redirects instead of serving a schema with a mismatched$id
(this helps prevent people from thinking that thelatest
URI can be used in$ref
s, etc.).Netlify seems to be the most popular suggestion on our Slack, with @jmertic having seen it used for similar purposes and at least one other person recommending it. I've also seen Cloudflare Pages used. Both can run from GitHub repos, and I'm pretty sure both can solve both of our main problems. The distinction might be which has the most services available through any sort of open source foundation-oriented plan (I believe both have or at least once had such plans), which I have not investigated at all.
The text was updated successfully, but these errors were encountered: