diff --git a/README.md b/README.md index 62ddc75..2b5898b 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,19 @@ The rest of the files in this repo are the standard Jekyll site files. ## Running the site locally +### Prerequisites + +You're going to need: + + - **Linux or OS X** — Windows may work, but is unsupported. + - **Ruby, version 2.2.5 or newer** + - **Bundler** — If Ruby is already installed, but the `bundle` command doesn't work, just run `gem install bundler` in a terminal. + +### Running locally + +```shell +git clone https://github.com/lightninglabs/lightning-dev-site +``` Install Jekyll: ``` $ gem install jekyll bundler @@ -32,6 +45,8 @@ Run the site and watch for changes: ``` $ bundle exec jekyll serve ``` +* If running remotely add: `--host=0.0.0.0` + ## Regenerating documentation @@ -40,12 +55,17 @@ $ bundle exec jekyll serve pip install Jinja2 ``` -# Get the latest INSTALL.md +### Get the latest INSTALL.md ```shell curl -o INSTALL.md -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/docs/INSTALL.md ``` -# Get the latest gRPC guides +### Fetch the latest Docker guide +```shell +curl -o DOCKER-README.md -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/docker/README.md +``` + +### Get the latest gRPC guides ```shell curl -o python.md -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/docs/grpc/python.md curl -o javascript.md -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/docs/grpc/javascript.md diff --git a/_config.yml b/_config.yml index 9145d1a..a90951d 100644 --- a/_config.yml +++ b/_config.yml @@ -14,8 +14,7 @@ # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Lightning Network Developers -author: Max Fang -email: max@lightning.engineering +email: hello@lightning.engineering description: > # this means to ignore newlines until "baseurl:" Developer resources and documentation for the Lightning Network Daemon. baseurl: "" # the subpath of your site, e.g. /blog diff --git a/_includes/footer.html b/_includes/footer.html index b7a6c9c..744eb45 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -2,11 +2,10 @@