Ask HN: Apps that are built with Git as the back end?
61–68 of 68 posts
Re: Ask HN: Apps that are built with Git as the back end?
#62The Office 365 backend uses git to store snapshots of documents. [1] https://github.com/microsoft/FluidFramework/tree/main/server...
That is not exactly what it says. It says it uses a content-adressable system and you can talk to it as if it was git.
1. https://github.com/microsoft/FluidFramework/tree/main/server...
Re: Ask HN: Apps that are built with Git as the back end?
#63Re: Ask HN: Apps that are built with Git as the back end?
#64Tim Caswell has several projects that interact directly with git. He has a few websites served directly from a bare git repo powered by https://github.com/creationix/wheaty . Another project that uses git as a storage medium is a package server for the node.js API implemented in Lua: https://github.com/luvit/lit . Both serve files from a git repository, and lit will actually write to the repository. There are several…
Also spent a few minutes browsing around and found https://github.com/creationix/tedit , a web based editor that reads and writes directly to git (I think). Like I said Tim has quite a few projects that interact directly with git.
Re: Ask HN: Apps that are built with Git as the back end?
#65https://doggos.com/add-business/
when you submit this form, a PR is created with githubs pull request API and a build is triggered on vercel. but the site is static and has no backend otherwise. if building the PR passes, the new link is aliased to production
Re: Ask HN: Apps that are built with Git as the back end?
#66Twitter distributes config files across their entire fleet (hundreds of thousands of machines) using git and a cron job. Commit your config change, wait a few minutes and there it is. Source: I’m a former tweep.
Source: also former Tw (2008-2013)