diff --git a/MANIFEST.in b/MANIFEST.in index d79f6fe..67486f7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,8 @@ include man/man1/isso.1 include man/man5/isso.conf.5 +include share/isso.conf + include isso/js/embed.min.js include isso/js/embed.dev.js include isso/js/count.min.js diff --git a/Makefile b/Makefile index f3fb7c5..56f93ad 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ ISSO_CSS_SRC_DEPS := $(shell find isso/css -type f | grep .scss) RST := $(shell find docs/ -type f -name '*.rst') MAN := man/man1/isso.1 man/man5/isso.conf.5 -WWW := docs/index.html docs/isso.example.cfg $(wildcard docs/_static/*) +WWW := docs/index.html share/isso.conf $(wildcard docs/_static/*) CSS := docs/_static/css/site.css all: man js site diff --git a/docs/docs/configuration/isso.conf b/docs/docs/configuration/isso.conf new file mode 120000 index 0000000..984bd8b --- /dev/null +++ b/docs/docs/configuration/isso.conf @@ -0,0 +1 @@ +../../../share/isso.conf \ No newline at end of file diff --git a/docs/docs/configuration/server.rst b/docs/docs/configuration/server.rst index 902bc4d..51f5faf 100644 --- a/docs/docs/configuration/server.rst +++ b/docs/docs/configuration/server.rst @@ -3,7 +3,7 @@ Server Configuration The Isso configuration file is an `INI-style`__ textfile. It reads integers, booleans, strings and lists. Here's the default isso configuration: -:download:`isso.example.cfg `. A basic configuration from +:download:`isso.conf `. A basic configuration from scratch looks like this: .. code-block:: ini diff --git a/docs/isso.example.cfg b/share/isso.conf similarity index 100% rename from docs/isso.example.cfg rename to share/isso.conf