Update README
.gitignore
1 | 1 | *.swp | |
2 | 2 | *~ | |
3 | - | *.back | |
3 | + | *.bak | |
4 | 4 | *.mo | |
5 | 5 | dicos | |
6 | 6 | dictionaries |
README.md
13 | 13 | * haunt | |
14 | 14 | * guile | |
15 | 15 | ||
16 | + | As well as more common software: | |
17 | + | ||
18 | + | * make | |
19 | + | * wget | |
20 | + | * gzip | |
21 | + | * sed, coreutils, grep, findutils, ... | |
22 | + | ||
16 | 23 | The easiest way to do this is to use [guix](https://gnu.org/software/guix) and | |
17 | 24 | install the necessary components in a temporary environment: | |
18 | 25 | ||
… | |||
25 | 32 | To test the website, build it with: | |
26 | 33 | ||
27 | 34 | ```bash | |
28 | - | haunt build | |
35 | + | make | |
29 | 36 | ``` | |
30 | 37 | ||
31 | 38 | This can take quite a lot of time because it needs to build a lot data. | |
… | |||
36 | 43 | haunt serve | |
37 | 44 | ``` | |
38 | 45 | ||
39 | - | You can now connect to localhost to view the website. | |
39 | > | ||
40 | 0 | > | \ 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 | + | ``` |