{"id":13804678,"url":"https://github.com/vieter-v/vieter","last_synced_at":"2025-05-13T17:32:51.215Z","repository":{"id":37736813,"uuid":"505035040","full_name":"vieter-v/vieter","owner":"vieter-v","description":"Archlinux repository server \u0026 package build system, written in V (mirror)","archived":false,"fork":false,"pushed_at":"2023-07-17T12:16:56.000Z","size":1182,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2024-05-19T05:27:20.789Z","etag":null,"topics":["archlinux","docker","v","vlang","web"],"latest_commit_sha":null,"homepage":"https://git.rustybever.be/vieter-v/vieter","language":"V","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vieter-v.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-19T06:56:35.000Z","updated_at":"2023-12-16T12:40:20.000Z","dependencies_parsed_at":"2024-05-03T03:01:39.750Z","dependency_job_id":"e76b4136-a90b-4696-8498-426dc2c0ac02","html_url":"https://github.com/vieter-v/vieter","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vieter-v%2Fvieter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vieter-v%2Fvieter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vieter-v%2Fvieter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vieter-v%2Fvieter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vieter-v","download_url":"https://codeload.github.com/vieter-v/vieter/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253993408,"owners_count":21996304,"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":["archlinux","docker","v","vlang","web"],"created_at":"2024-08-04T01:00:52.440Z","updated_at":"2025-05-13T17:32:50.902Z","avatar_url":"https://github.com/vieter-v.png","language":"V","funding_links":[],"categories":["Applications"],"sub_categories":["Web"],"readme":"# Vieter\n\nI host documentation for Vieter over at https://rustybever.be/docs/vieter/. API\ndocumentation for the current codebase can be found at\nhttps://rustybever.be/api-docs/vieter/.\n\nFor more information, questions or just a chat, there's\n[#vieter:rustybever.be](https://matrix.to/#/#vieter:rustybever.be) on Matrix!\n\n## Overview\n\nVieter is a restart of the Pieter project. The goal is to create a simple,\nlightweight self-hostable Arch repository server, paired with a system that\nperiodically builds \u0026 publishes select Arch packages. This would allow me to\nbuild AUR packages (or PKGBUILDs I created myself) \"in the cloud\" \u0026 make sure I\nnever have to compile anything on my own systems, making my updates a lot\nquicker.\n\n## Why V?\n\nI chose [V](https://vlang.io/) as I've been very intrigued by this language for\na while now. I wanted a fast language that I could code while relaxing, without\nhaving to exert too much mental effort \u0026 V seemed like the right choice for\nthat. Sadly, this didn't quite turn out the way I expected, but I'm sticking\nwith it anyways ;p\n\n## Features\n\n* Arch repository server\n    * Support for multiple repositories \u0026 multiple architectures\n    * Endpoints for publishing new packages\n    * API for managing repositories to build\n* Build system\n    * Periodic rebuilding of packages\n    * Prevent unnecessary rebuilds\n\n## Building\n\nBesides a V installer, Vieter also requires the following libraries to work:\n\n* libarchive\n* openssl\n* sqlite3\n\nVieter also depends on some external V modules which you can install using `cd\nsrc \u0026\u0026 v install`. Make sure to keep these dependencies up to date using `v\nupdate`.\n\n### Compiler\n\nV is developed using a specific compiler commit that is usually updated\nwhenever a new version is released. Information on this can be found in the\n[tools](https://git.rustybever.be/vieter-v/tools) repository.\n\n## Contributing\n\nIf you wish to contribute to the project, please take note of the following:\n\n* Rebase instead of merging whenever possible, e.g. when updating your branch\n  with the dev branch.\n* Please follow the\n  [Conventional Commits](https://www.conventionalcommits.org/) style for your\n  commit messages.\n\n### Writing documentation\n\nThe `docs` directory contains a Hugo site consisting of all user \u0026\nadministrator documentation. `docs/api` on the other hand is a\n[Slate](https://github.com/slatedocs/slate) project describing the HTTP web\nAPI.\n\nTo modify the Hugo documentation, you'll need to install Hugo. Afterwards, you\ncan use the following commands inside the `docs` directory:\n\n```sh\n# Build the documentation\nhugo\n\n# Host an auto-refreshing web server with the documentation. Important to note\n# is that the files will be at `http://localhost:1313/docs/vieter` instead of\n# just `http://localhost:1313/`\nhugo server\n```\n\nFor the Slate docs, I personally just start a docker container:\n\n```sh\ndocker run \\\n    --rm \\\n    -p 4567:4567 \\\n    --name slate \\\n    -v $(pwd)/docs/api/source:/srv/slate/source slatedocs/slate serve\n```\n\nThis will make the Slate docs available at http://localhost:4567. Sadly, this\nserver doesn't auto-refresh, so you'll have to manually refresh your browser\nevery time you make a change.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvieter-v%2Fvieter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvieter-v%2Fvieter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvieter-v%2Fvieter/lists"}