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

https://github.com/mycore-org/mycore-website

Hugo based hompage project
https://github.com/mycore-org/mycore-website

Last synced: 10 months ago
JSON representation

Hugo based hompage project

Awesome Lists containing this project

README

          

# MyCoRe Website with Hugo
(online at: https://www.mycore.de)

## Requirements:
- Maven 3.5 or higher (https://maven.apache.org/download.cgi)
- Hugo extended 0.147.0 or later (https://github.com/gohugoio/hugo/releases/tag/v0.147.8)

## To start locally:

- clone repository
```
git clone https://github.com/MyCoRe-Org/mycore-website.git
```
- build website
```
> yarn build
```
or
```
> maven clean compile
```
- start Hugo
```
> cd mycore.org
> hugo server
```
- open your browser and goto

### Troubleshooting
- We have seen some problems with Hugo's Fast-Render-Mode (e.g. duplicated entries in site search),
so you might turn it of by starting hugo with
```
> hugo server --disableFastRender
```
- To include drafts and planned content, use the corresponding build instructions, i.e.:
```
> hugo server --buildDrafts --buildFuture
```