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

https://github.com/jabref/verein.jabref.org

Vereinshomepage von JabRef e.V.
https://github.com/jabref/verein.jabref.org

Last synced: about 1 month ago
JSON representation

Vereinshomepage von JabRef e.V.

Awesome Lists containing this project

README

          

# JabRef e.V. Website

> This repository contains the source of the [JabRef e.V.](https://verein.jabref.org).

Feel free to send blog entries.
Find details in our [CONTRIBUTING.md](CONTRIBUTING.md) file.

The layout is based on [Chirpy](https://github.com/cotes2020/jekyll-theme-chirpy).
We use [Jekyll](https://jekyllrb.com/) as static site generator.
See [GitHub pages](https://pages.github.com/) for more details on the mechanics behind.

## Local Development

For local development, follow the [Jekyll installation instructions](https://jekyllrb.com/docs/installation/).
Installing the latest version of ruby followed by `gem install bundler` should be enough.

Afterwards, run

```terminal
bundle install
jekyll serve --livereload
```

and go to in your browser.

On Windows, using a dockerized environment is recommended:

```terminal
docker run -p 4000:4000 --rm --volume="C:\git-repositories\jabref\verein.jabref.org":/srv/jekyll jekyll/jekyll:4 jekyll serve
```

In case you get errors regarding `Gemfile.lock`, just delete `Gemfile.lock` and rerun.

Incremental building is also possible:

```terminal
docker run -p 4000:4000 --rm --volume="C:\git-repositories\jabref\verein.jabref.org":/srv/jekyll jekyll/jekyll:4 jekyll serve --incremental
```