{"id":27883022,"url":"https://github.com/cqfn/degitx","last_synced_at":"2025-05-05T06:11:16.749Z","repository":{"id":39150648,"uuid":"293451044","full_name":"cqfn/degitx","owner":"cqfn","description":"Distributed git repository manager","archived":false,"fork":false,"pushed_at":"2023-03-06T23:25:37.000Z","size":22432,"stargazers_count":29,"open_issues_count":53,"forks_count":7,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-11-24T20:41:18.333Z","etag":null,"topics":["distributed-systems","git","go","p2p","research"],"latest_commit_sha":null,"homepage":"","language":"TeX","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cqfn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-09-07T07:15:44.000Z","updated_at":"2024-05-26T11:01:42.000Z","dependencies_parsed_at":"2023-12-16T06:05:07.859Z","dependency_job_id":"40c65fde-4968-4e16-abed-548238e45814","html_url":"https://github.com/cqfn/degitx","commit_stats":{"total_commits":254,"total_committers":14,"mean_commits":"18.142857142857142","dds":0.4251968503937008,"last_synced_commit":"97b9ebb28140850721030a8b192b1745d4dd4225"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cqfn%2Fdegitx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cqfn%2Fdegitx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cqfn%2Fdegitx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cqfn%2Fdegitx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cqfn","download_url":"https://codeload.github.com/cqfn/degitx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252448587,"owners_count":21749495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["distributed-systems","git","go","p2p","research"],"created_at":"2025-05-05T06:11:16.099Z","updated_at":"2025-05-05T06:11:16.736Z","avatar_url":"https://github.com/cqfn.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"![CI](https://github.com/cqfn/degitx/workflows/CI/badge.svg?branch=master\u0026event=push)\n![Build white paper document](https://github.com/cqfn/degitx/workflows/Build%20white%20paper%20document/badge.svg)\n![Lines of code](https://img.shields.io/tokei/lines/github/cqfn/degitx)\n[![Telegram chat](https://img.shields.io/badge/Telegram-chat-brightgreen.svg)](https://t.me/cqfn_degit)\n\n\n\nDeGitX - distributed git repository manager,\nsee explanation in the [white paper](https://central.artipie.com/degit/wp/white-paper-latest.pdf)\nor join Telegram chat to discuss: [@cqfn_degit](https://t.me/cqfn_degit).\n\n## Build\n\nRun `make` to build binaries, they are located at `./target` dir.\n\n## Install\n\nDownload proper binary asset from releases page: https://github.com/cqfn/degitx/releases\n(e.g. `degit_(version)_Linux_x86_64.tar.gz` for Linux64 machine).\nTo verify build signature, download `checksums.txt`, `checksums.txt.sig` and\nimport GPG by id `84292276B8D114FD450F84C0421ED823A1B750E3` from one of the keyservers, e.g.\n```bash\ngpg --keyserver pgp.mit.edu --recv-keys 84292276B8D114FD450F84C0421ED823A1B750E3\n```\nGPG public key from `degit-key.pub` repository root, then import GPG key into your GPG keychain.\nAfter GPG import, verify checksums signature files (downloaded from release assets) using command\n```bash\ngpg --verify checksums.txt.sig\n```\nIf everithing is OK, verify SHA256 hash of binary asset downloaded (ignore errors for other platform assets):\n```bash\nsha256sum -c checksums.txt\n```\nIf checksum is OK, extract binary from the archive:\n```bash\ntar -xvzf degit_(version)_(platform).tar.gz\n```\n\n## Node Configuration\n\n`yaml` is the only node configuration format and consist of: \n\n - `version` - config format version\n - `keys` - node crypto keys:\n   - `alg` - key algorithm\n   - `private` - private key location\n   - `public` - public key location\n   \nAll fields are required. \n\n\u003c!--\n@todo #25:30min Analyze projects and consensus algorithms above,\n extract summary and refernces, add to white paper. For projects:\n find white paper or other document, and extract summary from it.\n\nConsensus algorithms:\n - http://www.cs.yale.edu/homes/aspnes/pinewiki/Paxos.html\n - https://en.wikipedia.org/wiki/Paxos_algorithm\n - https://raft.github.io/\n\nProjects\n - [etcd](https://etcd.io/)\n - [brig](https://github.com/sahib/brig)\n\n--\u003e\n\n### Contributing\n\nThis page will help you with contributing workflow:\nhttps://github.com/cqfn/degitx/blob/master/CONTRIBUTING.md\n\nTo build the project use `make` command:\n - `make` - install all dependencies, generate proto files, run tests and build node\n - `make install-deps` - install required dependencies\n - `make proto` - generate protobuf source code\n - `make build` - build core package\n - `make test` - run tests\n - `make degitx` - build `node` binary\n - `make degitx-gitaly` - build front-end binary\n - `make lint` - run linters. [golangci-lint](https://golangci-lint.run/) required to be installed in advance.\n - `make verify` - build, test, lint, degitx and degitx-gitaly\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcqfn%2Fdegitx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcqfn%2Fdegitx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcqfn%2Fdegitx/lists"}