File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,17 @@ Sample websites using Gozer:
12
12
- [ Simplest possible example] ( example/ )
13
13
- [ My personal website] ( https://github.com/dannyvankooten/www.dannyvankooten.com )
14
14
15
- ## Directory structure
16
15
17
- Gozer expects the following directory structure in order to generate your site.
18
- You can create this structure by running ` gozer new ` .
16
+ ## Installation
17
+ You can install Gozer using one of the following methods:
18
+
19
+ - Download a precompiled binary from the [ latest release] ( https://github.com/dannyvankooten/gozer/releases )
20
+ - If you have the Go compiler installed: ` go install github.com/dannyvankooten/gozer@latest `
21
+
22
+
23
+ ## Usage
24
+
25
+ Run ` gozer new ` to quickly generate an empty directory structure.
19
26
20
27
``` txt
21
28
content/ # Your posts and pages
@@ -24,7 +31,9 @@ public/ # Any static files
24
31
config.toml # Configuration file
25
32
```
26
33
27
- Placing Markdown files in your ` content/ ` directory will create a page in your build directory after running ` gozer build ` .
34
+ Then, run ` gozer build ` to generate your site.
35
+
36
+ Any Markdown files placed in your ` content/ ` directory will result in an HTML page in your build directory after running ` gozer build ` .
28
37
29
38
For example:
30
39
You can’t perform that action at this time.
0 commit comments