https://github.com/apache/aries-site
Apache aries website
https://github.com/apache/aries-site
aries java library
Last synced: 12 months ago
JSON representation
Apache aries website
- Host: GitHub
- URL: https://github.com/apache/aries-site
- Owner: apache
- Created: 2019-07-02T17:44:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-20T18:33:45.000Z (almost 7 years ago)
- Last Synced: 2025-07-08T02:05:00.968Z (12 months ago)
- Topics: aries, java, library
- Language: HTML
- Homepage: https://aries.apache.org/
- Size: 136 KB
- Stars: 2
- Watchers: 12
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Apache Aries Website
This project contains the Apache Aries website.
## Contribute
The concrete repository is on the Apache gitbox but if you want to contribute, you have to clone the Github repository which is a mirror and provide a pull request with your changes. You can find more informations about how to contribute on the community page of the project (http://aries.apache.org/community/gettinginvolved.html).
Clone:
```
git clone https://github.com/apache/aries-site.git
```
## Prerequisites
The website generator used is [Jekyyl](https://jekyllrb.com).
* Install a fully Ruby environment: https://jekyllrb.com/docs/installation/
* Install Jekyyl:
```
gem install jekyll bundler
```
The website theme used is [Bulma](http://www.csrhymes.com/bulma-clean-theme/).
The first time, you have to install Bulma theme files.
Go into the project root directory and execute:
```
bundle install
```
## Build
Clean up the project:
```
bundle exec jekyll clean
```
Start a local server in development mode:
```
bundle exec jekyll serve
```
Build for deployment production:
```
bundle exec jekyll build
```