Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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/.
- Host: GitHub
- URL: https://github.com/gudhi/gudhi.github.io
- Owner: GUDHI
- License: mit
- Created: 2018-10-04T09:33:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T08:55:15.000Z (6 months ago)
- Last Synced: 2024-06-27T10:12:32.821Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 55.8 MB
- Stars: 1
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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 :