Update README

Julien LepillerWed Apr 17 11:34:40+0200 2019

113ecff

Update README

.gitignore

11
*.swp
22
*~
3-
*.back
3+
*.bak
44
*.mo
55
dicos
66
dictionaries

README.md

1313
* haunt
1414
* guile
1515
16+
As well as more common software:
17+
18+
* make
19+
* wget
20+
* gzip
21+
* sed, coreutils, grep, findutils, ...
22+
1623
The easiest way to do this is to use [guix](https://gnu.org/software/guix) and
1724
install the necessary components in a temporary environment:
1825

2532
To test the website, build it with:
2633
2734
```bash
28-
haunt build
35+
make
2936
```
3037
3138
This can take quite a lot of time because it needs to build a lot data.

3643
haunt serve
3744
```
3845
39-
You can now connect to localhost to view the website.
39>
400>
\ No newline at end of file
46+
You can now connect to localhost to view the website.
47+
48+
### Updating dictionary data
49+
50+
Dictionaries are served by this website. The first time you build the website,
51+
make will take care of downloading the necessary data and building the dictionary
52+
files. Later, it will not download the files anymore, but you can update
53+
them explicitly with:
54+
55+
```bash
56+
make download
57+
```