Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.59 KB

README.md

File metadata and controls

46 lines (26 loc) · 1.59 KB

Build Status

turtlecoin.lol

To submit or propose changes to turtlecoin.lol, submit a pull request to this repository.

Developing

About

This project uses Jekyll to generate a static website.

Setup

  1. Make sure you have Ruby 2.3 or newer installed.
  2. Run gem install bundler to install bundler.
  3. Run bundle install to install the dependencies of this project.
  4. Run bundle exec jekyll serve to start the development server at http://localhost:4000. See Jekyll documentation for more information.

Deployment

Commits to master auto deploy via Travis CI to GitHub pages.

Deploying manually

  • ./scripts/build.sh
  • ./scripts/deploy.sh

Localization

All translations live in the _i18n folder.

Adding a new language

  • Create a copy of _i18n/en.yml and name the file after the locale.
  • Replace the English text with the translated version.
  • Add the language details to the Localization config in _config.yml.

Contributors