pelican ./content
starts creating a website using the default settings and tries to guess the location of your content, output, and configuration files.
make html
calls pelican
, but explicitly gives it an input directory, an output directory, a configuration file, and, optionally, additional options.
Basically, make html
(along with make regenerate
) are convenient methods that make your work easier. In any case, you must run make publish
to generate content that should be uploaded to your web server, since it uploads publishconf.py
files that define several additional parameters (rss feeds) and allow you to change the settings for the βcorrectβ web website.
source share