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.
- Host: GitHub
- URL: https://github.com/jabref/verein.jabref.org
- Owner: JabRef
- License: mit
- Created: 2023-09-01T16:38:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-18T22:56:45.000Z (over 2 years ago)
- Last Synced: 2026-02-03T16:45:42.225Z (4 months ago)
- Language: Ruby
- Size: 2.96 MB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```