bulma/docs
2018-05-30 10:28:41 +02:00
..
_data Update changelog 2018-05-30 10:28:41 +02:00
_includes Fix index backers 2018-05-30 10:23:03 +02:00
_javascript Fix categories interaction 2018-05-03 01:41:52 +01:00
_layouts Fix button docs 2018-04-12 00:20:58 +01:00
_posts Emoji support for tweets 2018-04-13 19:42:39 +01:00
_sass Fix index backers 2018-05-30 10:23:03 +02:00
css Fix index backers 2018-05-30 10:23:03 +02:00
documentation Panel docs, FontAwesome 5 icon classes updates 2018-05-29 17:43:55 +01:00
favicons Update favicons 2017-01-04 19:00:50 +01:00
images Use mp4 videos 2018-05-25 20:48:20 +02:00
lib Fix categories interaction 2018-05-03 01:41:52 +01:00
vendor Add native 2018-03-29 22:25:55 +01:00
_config.yml Website 0.7.0 2018-04-13 16:45:12 +01:00
.babelrc Add babel 2017-07-01 18:30:39 +01:00
.gitignore Update gitignore 2018-04-13 15:46:00 +01:00
alternative-to-bootstrap.html Add more layout 2018-04-10 18:50:19 +01:00
atom.xml Add Bulma book 2018-03-26 14:46:39 +01:00
backers.html Update backers April 2018 2018-05-03 01:39:33 +01:00
blog.html Fix button docs 2018-04-12 00:20:58 +01:00
bulma-docs.sass Fix hero docs 2018-04-18 17:00:00 +01:00
bulma-start.html Add more layout 2018-04-10 18:50:19 +01:00
CNAME Create CNAME 2016-09-11 14:32:11 +01:00
docker-compose.yml docker-compose file 2017-04-01 13:39:17 +01:00
documentation.html Add documentation icons 2018-04-10 22:38:00 +01:00
expo.html Update expo 2018-04-13 19:57:54 +01:00
extensions.html fix link to the ribbon extension 2018-05-01 15:07:56 -07:00
index.html Add JS 2018-04-10 15:38:50 +01:00
LICENSE Update templates 2017-01-15 21:45:20 +00:00
love.html Fix book banner 2018-04-10 23:02:30 +01:00
made-with-bulma.html Add documentation icons 2018-04-10 22:38:00 +01:00
more.html Add link element 2018-04-10 22:50:18 +01:00
package.json Clean up package.json 2018-04-13 15:57:10 +01:00
README.md Add an extra prerequisite - ruby2.x-dev in docs/README.md (#1820) 2018-05-25 11:21:53 +02:00
templates.html Organize partials 2018-04-09 22:25:26 +01:00
test.html Anim init 2018-04-11 13:36:41 +01:00
thank-you.html Organize partials 2018-04-09 22:25:26 +01:00
tiles.html Organize partials 2018-04-09 22:25:26 +01:00
videos.html Use mp4 videos 2018-05-25 20:48:20 +02:00
yarn.lock Clean up package.json 2018-04-13 15:57:10 +01:00

Building the documentation

The documentation HTML is produced with the Ruby-based jekyll tool.

  1. Make sure Ruby 2.x is installed.
  2. gem install jekyll

Note

: If you are an Ubuntu user Make sure ruby2.x-dev is installed

Viewing the documentation locally

Then to view the documentation in your local checkout:

  1. Before you begin, cd into docs/ directory, and cp _config.yml _config.local.yml. Then edit _config.local.yml and change the url: value to http://localhost:4000. This local config file will be ignored by git.
  2. In a separate shell session, cd to the docs/ directory, and do:
jekyll serve --incremental --config _config.local.yml

This will start an HTTP server at http://localhost:4000/ that serves the docs built in the _site directory; and anytime the docs are rebuilt by you, it will serve the docs site on the fly. 2. In your main shell session where you develop, if you change anything in docs/ the jekyll server will rebuild those on the fly. But if you change anything about the Bulma SASS or CSS, you need to do npm run start-docs to build the docs' CSS before you will see it in the browser. The process running jekyll serve will pick up the new CSS automatically.