Skip to content

semver/semver.org

Repository files navigation

logo

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 and Bundler.
  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 installed:

  1. Build Docker image and start container instance:
    docker-compose up
    
  2. Open http://localhost:4000.