Snapshot của mahmoud/zerover: 262★ · CSS. 0️⃣ Minimalist versioning scheme for devs who can't be bothered.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
ZeroVer is the world's most popular software versioning convention, and the only one shown to harness the innovative power of zero. The benefits are innumerable and the effects on the software world are profound.
Read more at 0ver.org.
Table of Contents
Description
Contributing
Adding a Project
Building
CI/CD
Description
The site is statically generated using Chert. The configuration for the Chert site is defined in chert.yaml The pages for the site are located under entries/.
Tables of current and past ZeroVer users are generated from projects.yaml into projects.json by tools/gen_projects_json.py using the GitHub API. The project list has gotten long enough that you'll need a GitHub API key.
custom.py uses Chert hooks to render and inject tables based off of projects.json. custom.py and tools/gen_projects_json.py are both written to only depend on libraries required by Chert. To bring things full circle, Chert was 0ver for almost 3 years.
Contributing
Are you or someone you know a prominent ZeroVer user who's missing from our list? Feel free to contribute to the site and add this project!
Qualifications in notable 0ver.org entries:
A current ZeroVer-compliant version (0.*) or long history of ZeroVer usage, and
Very wide exposure (i.e., 1,000+ GitHub stars), or
Active promotion as part of a paid product or service (e.g., Hashicorp Vault), or
Relative maturity and infrastructural importance (e.g., Compiz, docutils)
To add a project, follow the guide below.
Fork and clone this repository, then create a new branch. GitHub has a great guide on contributing to open-source projects like this.
On the new branch, add your project to projects.yaml. See the project.yaml keys description below.
Commit the change and create a pull request on GitHub.
Adding a Project
Adding a project to projects.yaml is typically a simple task. You can find an 0verview of the allowable keys below, or find a more detailed guide with examples by directly navigating you the applicable section below from this list:
Simple GitHub Projects (ZeroVer tags used)
Complex GitHub Projects (ZeroVer tags not used)
Non-GitHub Projects
Emeritus Complex GitHub Projects
Emeritus Non-GitHub Projects
0verview of Keys
Key
ZeroVer or Emeritus
When to Add
Description
Example Value
name
Either
Always
The name of the project
Big ZeroVer Project
url
Either
If the project has a webpage other than its repository
The project's home page
https://example.com
gh_url
Either
If the project has a GitHub repository
The project's GitHub repository link
https://github.com/example/test
repo_url
Either
If the project has a non-GitHub repository
The project's non-GitHub repository link
https://gitlab.com/example
wp_url
Either
If the project has a Wikipedia page
The project's Wikipedia link.
https://www.wikipedia.org/
emeritus
Emeritus only
If the project is no longer ZeroVer
true if the project is no longer ZeroVer
true
reason
Either
If the project is obscure or barely meets the 0ver requirements
The reason this project was added to the 0ver website listing.
This project is a core component of a large system used by millions of users around the world.
star_count
Either
If the project is not from GitHub and a star count can be obtained
The number of stars the project has
10000
release_count
ZeroVer only
If the project is currently ZeroVer and is not from GitHub or the repository on GitHub has an unusual tagging system
The number of releases the project has had
100
release_count_zv
Emeritus only
If the project is no longer ZeroVer and is not from GitHub or the repository on GitHub has an unusual tagging system
The number of releases the project has before it left 0ver
50
latest_release_date
ZeroVer only
If the project is currently ZeroVer and is not from GitHub or the repository on GitHub has an unusual tagging system
The date of the latest release at time of writing
2024-12-28
latest_release_version
ZeroVer only
If the project is currently ZeroVer and is not from GitHub or the repository on GitHub has an unusual tagging system
The version of the latest release
"4.2.0"
first_release_date
Either
If the project is not from GitHub, the repository on GitHub has an unusual tagging system, or the first release tag is not on the GitHub repository
The date of the first release
2000-01-01
first_release_version
Either
If the project is not from GitHub, the repository on GitHub has an unusual tagging system, or the first release tag is not on the GitHub repository
The version of the first release
"0.0.1"
first_nonzv_release_date
Emeritus only
If the project is no longer ZeroVer AND the project is not from GitHub or the repository on GitHub has an unusual tagging system
The date of the first non-0ver release
2010-01-01
first_nonzv_release_version
Emeritus only
If the project is no longer ZeroVer AND the project is not from GitHub or the repository on GitHub has an unusual tagging system
The version of the first non-0ver release
"1.0.0"
last_zv_release_version
Emeritus only
If the project is no longer ZeroVer AND the project is not from GitHub or the repository on GitHub has an unusual tagging system
The last 0ver release before the project left ZeroVer
"0.9.9"
Note: version values must be quoted strings (e.g. "0.1", not 0.1) so YAML doesn't parse them as floats, which breaks trailing zeros and exact tag matching.
Simple GitHub Projects
If the project you are adding is hosted on GitHub with ZeroVer compatible tags, you simply need to add the following snippet to the projects.yaml file. This will work with currently ZeroVer projects and emeritus projects.
- name: Project Name
gh_url: https://github.com/example/test
Additionally, you can add a homepage URL, Wikipedia URL and/or reasoning like this:
- name: Project Name
url: https://example.com
gh_url: https://github.com/example/test
wp_url: https://www.wikipedia.org/
reason: This project is a core component of a large system used by millions of users around the world.
If the project did not begin on GitHub, the tags may not extend to the origin of the project. You may want to fix these by manually entering the first release data found on the project website or other sources.
- name: Project Name
url: https://example.com
gh_url: https://github.com/example/test
reason: This project is a core component of a large system used by millions of users around the world.
first_release_date: 2000-01-01
first_release_version: "0.1" # This release isn't tagged on GitHub, see here: https://example.com/releases/0.1
Complex GitHub Projects or Non-GitHub Projects
If the project you are adding is hosted on GitHub with incompatible ZeroVer tags (e.g. tags are prefixed with odd text) or the project is not on GitHub, you will need to fill out a more detailed entry in the projects.yaml file.
Emeritus Complex GitHub Projects or Emeritus Non-GitHub Projects
If a complex GitHub project or non-GitHub project is no longer ZeroVer and needs to be added to the emeritus list, you will need to change several keys.
Create and enter a virtual environment if you haven't already
pip install -r requirements.txt
Updating projects.json
Obtain a personal access token from GitHub. This token will not need any special permissions, the default options should be fine.
Create a file named gh_token and paste in your personal access token.
Run python tools/gen_projects_json.py --user YOUR_USERNAME --token gh_token
Serving the site
Simply run chert serve.
CI/CD
0ver uses GitHub Actions to validate projects.yaml, test, and update project.json. The site itself is deployed by an hourly cron on the production host, which pulls master, renders with chert, and atomically swaps the live directory, reporting failures to Sentry; see tools/deploy_prod.sh.
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/mahmoud/zerover là nguồn chính thức.
mahmoud/zerover có bao nhiêu sao?
mahmoud/zerover có 262 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/mahmoud/zerover. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
mahmoud/zerover có những chủ đề gì?
GitHub topics của mahmoud/zerover: "calver", "semver", "standards", "version", "versioning". TopGit xếp repo vào nhóm mã nguồn mở.
mahmoud/zerover có phải mã nguồn mở không?
Có — mahmoud/zerover phát hành theo license BSD-3-Clause, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/mahmoud/zerover.
mahmoud/zerover có trang demo không?
Dự án có trang chủ ở https://0ver.org. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
mahmoud/zerover còn đang phát triển không?
Commit gần nhất trên mahmoud/zerover là 3 ngày trước (theo timestamp GitHub). Repo có 92 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc zerover có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về zerover.