From 36fcaa8b2e565bfb01b6d9d4da1722b3b19b591a Mon Sep 17 00:00:00 2001 From: status-im-auto Date: Wed, 8 Dec 2021 11:46:13 +0000 Subject: [PATCH] Updates --- assets/js/search-data.json | 2 +- development.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/search-data.json b/assets/js/search-data.json index 0076dba..4743fff 100644 --- a/assets/js/search-data.json +++ b/assets/js/search-data.json @@ -1033,7 +1033,7 @@ },"172": { "doc": "DEVELOPMENT", "title": "Dependencies", - "content": "This repository is built using Jekyll along with some plugins and a theme. To install the necessary dependencies on Ubuntu use: . sudo apt-get install ruby-full build-essential zlib1g-dev gem install jekyll bundler . It might be necessary to specify installation destination for your Gems: . export GEM_HOME=\"$HOME/.gems\" export PATH=\"$HOME/gems/bin:$PATH\" . For instructions on other systems use these docs. Then you can install other Gems like the just-the-docs theme: . bundle install . ", + "content": "This repository is built using Jekyll along with some plugins and a theme. To install the necessary dependencies on Ubuntu use: . sudo apt-get install ruby-full build-essential zlib1g-dev gem install jekyll bundler . It might be necessary to specify installation destination for your Gems: . export GEM_HOME=\"$HOME/.gems\" export PATH=\"$GEM_HOME/bin:$PATH\" . For instructions on other systems use these docs. Then you can install other Gems like the just-the-docs theme: . bundle install . ", "url": "https://specs.status.im/development#dependencies", "relUrl": "/development#dependencies" },"173": { diff --git a/development.html b/development.html index 0d0d370..79f6446 100644 --- a/development.html +++ b/development.html @@ -1,7 +1,7 @@ DEVELOPMENT - Status Specification DEVELOPMENT | Status Specification Link Search Menu Expand Document

Description

This file explains the process of local development for this repository.

Dependencies

This repository is built using Jekyll along with some plugins and a theme.

To install the necessary dependencies on Ubuntu use:

sudo apt-get install ruby-full build-essential zlib1g-dev
 gem install jekyll bundler
 

It might be necessary to specify installation destination for your Gems:

export GEM_HOME="$HOME/.gems"
-export PATH="$HOME/gems/bin:$PATH"
+export PATH="$GEM_HOME/bin:$PATH"
 

For instructions on other systems use these docs.

Then you can install other Gems like the just-the-docs theme:

bundle install
 

Building

To simply build the site use:

bundle exec jekyll build --config _config_local.yml
 

This will generate the site files and put them under _site.

But if you want Jekyll to continuously build and also serve the site use:

bundle exec jekyll serve --config _config_local.yml --incremental