add readme, update makefile.

This commit is contained in:
Kyle Isom 2022-02-23 23:40:26 -08:00
parent f2eea899fe
commit 3947958862
2 changed files with 12 additions and 1 deletions

View File

@ -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

7
README.md Normal file
View File

@ -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.