File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,18 @@ docker:
14
14
package :
15
15
$(MAKE ) -C ./src package
16
16
17
- deploydocs :
17
+ builddocs :
18
18
mkdocs build
19
- s3cmd sync site/ s3://rejson.io
20
- .PHONY : deploydocs
19
+
20
+ localdocs : builddocs
21
+ mkdocs serve
22
+
23
+ deploydocs : builddocs
24
+ mkdocs gh-deploy
21
25
22
26
clean :
23
27
find ./ -name " *.[oa]" -exec rm {} \; -print
24
28
find ./ -name " *.so" -exec rm {} \; -print
25
29
find ./ -name " *.out" -exec rm {} \; -print
26
- rm -rf ./build
30
+ rm -rf ./build
31
+
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ $ REDIS_PORT=6379 make test
30
30
31
31
## Documentation
32
32
33
- 1 . Prerequisites: ` pip install mkdocs mkdocs-material s3cmd `
34
- 1 . To build and serve locally: ` mkdocs build && mkdocs serve `
33
+ 1 . Prerequisites: ` pip install mkdocs mkdocs-material `
34
+ 1 . To build and serve locally: ` make localdocs `
35
35
1 . To deploy to the website: ` make deploydocs `
You can’t perform that action at this time.
0 commit comments