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
- Host: GitHub
- URL: https://github.com/mycore-org/mycore-website
- Owner: MyCoRe-Org
- Created: 2019-03-12T11:47:31.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-08-12T16:47:04.000Z (10 months ago)
- Last Synced: 2025-08-12T17:30:52.622Z (10 months ago)
- Language: JavaScript
- Size: 23.3 MB
- Stars: 1
- Watchers: 13
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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
```