├── Makefile ├── README.md ├── dat.json └── index.html /Makefile: -------------------------------------------------------------------------------- 1 | all: convert 2 | 3 | convert: 4 | pandoc README.md -o index.html 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dgit-web 2 | Decentralised Git Repo Sharing/Storage backed by Dat 3 | 4 | So. Github have [gone rogue](https://blogs.microsoft.com/blog/2018/06/04/microsoft-github-empowering-developers/). Ok, not quite, and the way I see it, it was either they got bought-out or shut-down, and I'm glad it was the former. Whatever your feelings on the above may be, it'd be nice to have a full **free**, **open** and **decentralised** place to collaborate on software, and other projects. 5 | 6 | So... let's build it? Or have you already started? Fork [this page on github](https://github.com/alexmorley/dgit-web) or using [Beaker Browser](https://beakerbrowser.com/) and add your name below plus answers to any of the questions. 7 | 8 | 9 | ## Current Architecture Proposal 10 | - Git remote sharing over hyperdrive / dat 11 | - Core Repository "Portal" on dat (mirrored to http) 12 | 13 | ## Work in this area 14 | - [hyperdb git repo](https://github.com/noffle/hyperdb-git-repo) 15 | - [hyperdb git remote helper](https://github.com/noffle/git-remote-hypergit) 16 | - [hypergit](https://github.com/noffle/hypergit) 17 | - [GitTorrent](https://github.com/cjb/GitTorrent) 18 | 19 | ## Research 20 | 21 | **Current Open Source Git repository browsers** 22 | - [GitWeb](https://git.kernel.org/pub/scm/git/git.git/tree/gitweb) 23 | - [Gitiles](https://github.com/google/gitiles) 24 | 25 | **What do we want from a code-sharing platform?** 26 | - Searchability - should be able to search through all repos by tag/name/content 27 | - ?? Community Input - Portal for bug-reports. Some metric for community approval e.g. how many other people are using this, and what do they think . 28 | 29 | **What do we not want?** 30 | - ?? 31 | 32 | 33 | 34 | **[Your question goes here...]** 35 | -------------------------------------------------------------------------------- /dat.json: -------------------------------------------------------------------------------- 1 | { 2 | "url": "dat://4d1e18019f5092f144c68d287448ac3fa22cb5e3b19d205d1b5707ed4d18689c/", 3 | "title": "dgit-web", 4 | "description": "Decentralised Git Repo Sharing/Storage using Dat" 5 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
Decentralised Git Repo Sharing/Storage backed by Dat
3 |So. Github have gone rogue. Ok, not quite, and the way I see it, it was either they got bought-out or shut-down, and I'm glad it was the former. Whatever your feelings on the above may be, it'd be nice to have a full free, open and decentralised place to collaborate on software, and other projects.
4 |So... let's build it? Or have you already started? Fork this page on github or using Beaker Browser and add your name below plus answers to any of the questions.
5 |Current Open Source Git repository browsers - GitWeb - Gitiles
12 |What do we want from a code-sharing platform? - Searchability - should be able to search through all repos by tag/name/content - ?? Community Input - Portal for bug-reports. Some metric for community approval e.g. how many other people are using this, and what do they think .
13 |What do we not want? - ??
14 |[Your question goes here...]
15 | --------------------------------------------------------------------------------