werc-1.5.0-tweaks

Tweaks for the werc website builder created by the mad architect Uriel
Log | Files | Refs | README

initrc (1713B)


      1 # This file contains the default werc settings.
      2 #
      3 # DO NOT EDIT, to customize copy to etc/initrc.local and edit at will.
      4 #
      5 # Some settings can also be set for a specific site or directory in their
      6 # respective _werc/config or their $masterSite/_werc/config file.
      7 
      8 # General options
      9 
     10 # Location of your Plan 9 from User Space installation (usually /usr/local/plan9)
     11 plan9port=$PLAN9
     12 
     13 # If you use 9base, it should point to your 9base root, try for example:
     14 #plan9port=/usr/lib/9base # This is the default 9base install path in Debian.
     15 
     16 # If rc has not been copied to /bin/rc you will also need to change
     17 # the #! line in bin/*.rc!
     18 
     19 # Path, make sure the plan9port /bin directory is included before /bin
     20 # Keep '.' in path! It is needed.
     21 path=($plan9port/bin . ./bin ./bin/contrib /bin /usr/bin)
     22 
     23 # Set this to your favorite markdown formatter, eg., markdown.pl (fltr_cache
     24 # takes as an argument a filter, in the default configuration markdown.pl, that
     25 # caches output) Note that some werc components assume a markdown-like
     26 # formatter, but all major functionality should should be formatter agnostic.
     27 #formatter=(fltr_cache markdown.pl)
     28 formatter=(fltr_cache md2html.awk)	# no perl for old men
     29 # formatter=(fltr_cache discount.rc) # use C for ze modern comforts. Requires https://www.pell.portland.or.us/~orc/Code/discount/  # also, check that the #!/bin/rc at the top corresponds to the correct path for rc before using this.
     30 
     31 # Enable debugging, to disable set to ()
     32 debug=true
     33 
     34 # Globally enabled apps
     35 enabled_apps=()
     36 
     37 # Default site variables, must be set in initrc.local or _werc/config, only siteTitle is required.
     38 #masterSite=cat-v.org # Not required!
     39 #siteTitle='cat-v'
     40 #siteSubTitle='Considered harmful'