-
Notifications
You must be signed in to change notification settings - Fork 19
Documentation
This site is built using Github Pages and Jekyll.
##Updating the Website
To modify existing pages, edit their corresponding markdown files in the /_includes
directory.
##Building the Website Locally
To build and serve the website locally, you must have Jekyll and rdiscount installed. Both of these packages require Ruby 1.9.2.
To build the website locally, first clone the repository to your computer:
git clone https://github.com/pysal/pysal.github.io.git && cd ./pysal.github.io
Then, install jekyll and rdiscount:
sudo gem install jekyll rdiscount
Finally, run Jekyll to serve the website.
Add the --watch
tag if you would like to have Jekyll monitor the directory for changes and update the site:
jekyll serve --watch
To view, open http://localhost:4000
in your web browser of choice