Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitcoin-abc/bitcoinabc.org
BitcoinABC.org website
https://github.com/bitcoin-abc/bitcoinabc.org
Last synced: about 1 month ago
JSON representation
BitcoinABC.org website
- Host: GitHub
- URL: https://github.com/bitcoin-abc/bitcoinabc.org
- Owner: Bitcoin-ABC
- License: mit
- Created: 2018-06-05T22:54:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-15T13:31:20.000Z (7 months ago)
- Last Synced: 2024-05-16T02:56:38.707Z (7 months ago)
- Language: HTML
- Size: 23 MB
- Stars: 21
- Watchers: 5
- Forks: 21
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# BitcoinABC.org Website
This is built using Github pages which uses Jekyll as a native static site framework.
It was not necessary to install Jekyll to build this. It is simply a fork of an implementation
of the "beautiful Jekyll" theme. Please refer upstream for helpful notes on using Jekyll and Github Pages.# Basic Install Instructions
## Install rvm
To install rvm to `$HOME/.rvm` (as in a single-user setup), just execute the following:
```
gpg --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
curl -sSL https://get.rvm.io | bash -s -- --ignore-dotfiles
echo "source $HOME/.rvm/scripts/rvm" >> ~/.bash_profile
```
Otherwise, read rvm's installation documentation: https://rvm.io/rvm/install## Install ruby and other dependencies
```
rvm install "$(cat .ruby-version)"
gem install jekyll bundler
bundle install
```Then run the build locally:
```
bundle exec jekyll serve
```# Providing Translations
1. Copy the file in `_posts/` that you wish to translate.
2. Set `lang` to the desired language code.
3. Verify that `multiLangId` is the same as the base filename **without** the language code.
4. Translate the file.# Troubleshooting
## Permission issues when executing 'arc land'
If you are encountering various 'master not found on origin' or permission errors when attempting to land a diff for this website, then ensure your remotes are set to:
```
ssh://[email protected]:2221/source/bitcoin-abc-website.git
```
which can be verified via:
```
git remote -v
```
If you have a different remote connection for this website repo, update it:
```
git remote rm origin
git remote add origin ssh://[email protected]:2221/source/bitcoin-abc-website.git
```