# semver.org **Repository Path**: semver/semver.org ## Basic Information - **Project Name**: semver.org - **Description**: 语义化版本控制规范。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: gh-pages - **Homepage**: https://semver.org/ - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-16 - **Last Updated**: 2024-11-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![logo](./assets/1000x600(light).jpg) This is the site at https://semver.org/ that describes the Semantic Versioning specification. ## Adding a translation 1. Create a new folder in `lang/` with the appropriate language tag 2. Add a translated `index.md` to that folder 3. Add a translated `spec/vX.X.X.md` for the latest spec to that folder 4. Ensure all files have the appropriate `title` and `language` front matter (see others as an example) 5. Add the language to the `_config.yml` file ## Running locally 1. Install [Ruby](https://www.ruby-lang.org/en/downloads/) and [Bundler](http://bundler.io/). 2. Install Jekyll and other dependencies from the gem: ``` bundle install ``` 3. Run the site locally: ``` bundle exec jekyll serve ``` 4. Open http://localhost:4000. ## Running locally with docker-compose If you have [docker-compose](https://docs.docker.com/compose/) installed: 1. Build Docker image and start container instance: ``` docker-compose up ``` 2. Open http://localhost:4000.