https://github.com/elek/hadoop-site-proposal
Temporary version, will be removed
https://github.com/elek/hadoop-site-proposal
Last synced: 5 months ago
JSON representation
Temporary version, will be removed
- Host: GitHub
- URL: https://github.com/elek/hadoop-site-proposal
- Owner: elek
- Created: 2017-03-13T08:09:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-21T18:57:36.000Z (almost 8 years ago)
- Last Synced: 2025-04-06T04:44:38.486Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 300 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apache Hadoop site
## Usage
The site is generated with [Hugo](https://gohugo.io/).
To generate a site you need only one binary. Follow the install guide from the hugo site. (Typically all the package managers
contain dedicated package, but as the hugo is written in go it's also possible to download the single binary from the release page).
After the installation you can generate the site with:
`hugo`
And the site will be generated to the `public` sub directory.
To improve/develop the site, you can use
```
hugo server --refresh
```
which starts a standalone auto-refreshed web server.
## Content
To create a new relase, create a file in ```content/release``` directory. The file name should be ```.md```where version is the release version.
Example: content/release/2.7.3.md
```
---
title: Release 2.7.3 available
date: 2016-08-26
linked: true
---
Please see the [Hadoop 2.7.3 Release
Notes](http://hadoop.apache.org/docs/r2.7.3/hadoop-project-dist/hadoop-common/releasenotes.html)
for the list of 221 bug fixes and patches since the previous release
2.7.2.
```
`linked: true` attributes means, that it will be displayed on the release page and under the documentation menu.
Note: date is used to sort the releases when the latests are displayed in the site.