Installing Lino Patrols

  • Install Lino (the framework) as documented in Install your Lino developer environment

  • Go to your repositories directory and download also a copy of the Lino Patrols repository:

    cd ~/repositories
    git clone https://gitlab.com/synodalsoft/patrols
    
  • Use pip to install this as editable package:

    pip install -e patrols
    
  • Create a local Lino project as explained in Create your first Lino site.

  • Change your project’s settings.py file so that it looks as follows:

    from lino_patrols.lib.patrols.settings import *
    
    
    class Site(Site):
        title = "Our Lino Patrols site"
    
    
    SITE = Site(globals())
    DEBUG = True