/OpenSourceEconomics.github.io

Our website at https://open-econ.org

Primary LanguageSCSSMIT LicenseMIT

opensourceeconomics.github.io

This is the source code for the OSE website. Edit the respective *.md files directly.

Instructions for Building Locally

This website uses Jekyll.

For official guides to install Jekyll, see Installation | Jekyll • Simple, blog-aware, static sites.

For GitHub's guide to locally build and test the website, see Testing your GitHub Pages site locally with Jekyll - GitHub Docs.

The basic steps are:

  1. Clone this repository to local machine.
  2. Run jekyll --version to make sure you have jekyll installed correctly.
  3. Run bundle install to make sure you have all the dependencies installed.
    • Alternatively, if file Gemfile.lock already exists, run bundle update.
  4. Run bundle exec jekyll serve --livereload --safe to start local server.
    • Note: you should access the Server address (for example, http://127.0.0.1:4000) instead of LiveReload address.
    • The safe flag is necessary since GitHub Pages does not allow non-whitelisted plugins.