Skip to content

Commit 14db5ea

Browse files
authored
add requirements (official-stockfish#29)
1 parent 6ed7cd1 commit 14db5ea

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ node_modules
33
.idea
44
public
55
resources
6+
.hugo_build.lock
67

78
# binaries
8-
static/files/*.zip
9+
static/files/*.zip

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1-
# Stockfish website
1+
# Stockfish Website
22

3-
Repo for content and blog posts on [stockfishchess.org](https://stockfishchess.org/)
3+
This is the repository for the Stockfish website, hosted at [stockfishchess.org](https://stockfishchess.org).
4+
5+
## Requirements
6+
This project uses [Hugo Pipes](https://gohugo.io/hugo-pipes/scss-sass/) to compile SCSS and minify assets. Please make sure you have the **Hugo Extended** version installed. If you are not using the extended version this theme will not work.
7+
8+
To check your version of Hugo, run:
9+
10+
```
11+
hugo version
12+
```
13+
14+
This will output the currently installed version of Hugo. Make sure you see `/extended` after the version number, for example `Hugo Static Site Generator v0.51/extended darwin/amd64 BuildDate: unknown` You do not need to use version v0.51 specifically, it just needs to have the `/extended` part.
15+
16+
## Development
17+
18+
Build the static site
19+
```
20+
hugo
21+
```
22+
23+
Run the development server
24+
```
25+
hugo server
26+
```

0 commit comments

Comments
 (0)