add readme, update makefile.
This commit is contained in:
parent
f2eea899fe
commit
3947958862
6
Makefile
6
Makefile
|
@ -71,5 +71,9 @@ endif
|
||||||
publish:
|
publish:
|
||||||
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
|
$(PELICAN) $(INPUTDIR) -o $(OUTPUTDIR) -s $(PUBLISHCONF) $(PELICANOPTS)
|
||||||
|
|
||||||
|
.PHONY:
|
||||||
|
deps:
|
||||||
|
pip3 install --user -r requirements.txt
|
||||||
|
|
||||||
|
.PHONY: html help clean regenerate serve serve-global devserver stopserver publish
|
||||||
|
|
||||||
.PHONY: html help clean regenerate serve serve-global devserver stopserver publish
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# exo-notes
|
||||||
|
|
||||||
|
This is the source for the [exocortex notes site](https://exon.wntrmute.net/).
|
||||||
|
|
||||||
|
It is buiit with Pelican. Use `make deps` to fetch the dependencies,
|
||||||
|
`make html` to generate the site HTML under `output/`, and
|
||||||
|
`make devserver` to run a development server.
|
Loading…
Reference in New Issue