There is no longer any pelican-themes directory with submodules. It's all part of the themes/ directory.
python manage.py populate takes an additional argument that isn't mentioned. Instead, you should run it from the root like this python fug/manage.py populate themes/.
You need to run a command like this: sudo -u postgres initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data' before you run the CREATE DATABASE command.
Before running the populate script, you should run make migrate so that the database gets initialized.
pelican-themes
directory with submodules. It's all part of thethemes/
directory.python manage.py populate
takes an additional argument that isn't mentioned. Instead, you should run it from the root like thispython fug/manage.py populate themes/
.sudo -u postgres initdb --locale $LANG -E UTF8 -D '/var/lib/postgres/data'
before you run theCREATE DATABASE
command.populate
script, you should runmake migrate
so that the database gets initialized.