Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gudhi/gudhi.github.io

https://gudhi.github.io/ is a fork of http://phlow.github.io/feeling-responsive/.
https://github.com/gudhi/gudhi.github.io

Last synced: 2 months ago
JSON representation

https://gudhi.github.io/ is a fork of http://phlow.github.io/feeling-responsive/.

Awesome Lists containing this project

README

        

# GUDHI website

GUDHI website is a fork of .

To get to know *Feeling Responsive* check out all the features explained in the [documentation](http://phlow.github.io/feeling-responsive/documentation/).

And what license is *Feeling Responsive* released under? [This one](https://github.com/Phlow/feeling-responsive/blob/gh-pages/LICENSE)).

## For developpers
To modify the web site, a github account is required. If you are not familiar with Git, please follow this [mini-tutorial](http://rogerdudler.github.io/git-guide/).

To 'compile' the web site, [Jekyll](https://jekyllrb.com/docs/installation/) is required.

In a command line :
```bash
bundle exec jekyll serve
```

And the web site is constructed under `_site` generated directory.

The web site is reconstructed on the fly when you modify pages (mostly `.md` files - for MarkDown) while jekyll serve is running.
And you can your modification on the web page [http://127.0.0.1:4000/](http://127.0.0.1:4000/).

If you want the specific developper configuration:
```bash
jekyll serve --config _config_dev.yml
```

### Qualification website

github automatically generates the qualification website from the master branch : https://gudhi.github.io/
The production server must be updated with the generated website : https://gudhi.inria.fr/

To generate the production website:
```bash
bundle exec jekyll build
```

## Jekyll installation
To install Jekyll on Ubuntu :