t* my version of playonbsd.com data
       
   URI git clone git://git.codevoid.de/playonbsd-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       tconfig.yml (1772B)
       ---
            1 # This is the main configuration file of your Dancer2 app
            2 # env-related settings should go to environments/$env.yml
            3 # all the settings in this file will be loaded at Dancer's startup.
            4 
            5 # === Basic configuration ===
            6 
            7 # Your application's name
            8 appname: "PlayOnBSD"
            9 
           10 # The default layout to use for your application (located in
           11 # views/layouts/main.tt)
           12 layout: "main"
           13 
           14 # when the charset is set to UTF-8 Dancer2 will handle for you
           15 # all the magic of encoding and decoding. You should not care
           16 # about unicode within your app when this setting is set (recommended).
           17 charset: "UTF-8"
           18 
           19 # === Engines ===
           20 #
           21 # NOTE: All the engine configurations need to be under a single "engines:"
           22 # key.  If you uncomment engine configurations below, make sure to delete
           23 # all "engines:" lines except the first.  Otherwise, only the last
           24 # "engines:" block will take effect.
           25 
           26 # template engine
           27 # simple: default and very basic template engine
           28 # template_toolkit: TT
           29 
           30 # template: "simple"
           31 
           32 template: "template_toolkit"
           33 engines:
           34   template:
           35     template_toolkit:
           36       # Note: start_tag and end_tag are regexes
           37       start_tag: '<%'
           38       end_tag:   '%>'
           39 
           40 # session engine
           41 #
           42 # Simple: in-memory session store - Dancer2::Session::Simple
           43 # YAML: session stored in YAML files - Dancer2::Session::YAML
           44 #
           45 # Check out metacpan for other session storage options:
           46 # https://metacpan.org/search?q=Dancer2%3A%3ASession&search_type=modules
           47 #
           48 # Default value for 'cookie_name' is 'dancer.session'. If you run multiple
           49 # Dancer apps on the same host then you will need to make sure 'cookie_name'
           50 # is different for each app.
           51 #
           52 engines:
           53   session:
           54     Simple:
           55       cookie_name: playonbsd.session
           56 #
           57 #engines:
           58 #  session:
           59 #    YAML:
           60 #      cookie_name: eshop.session
           61 #      is_secure: 1
           62 #      is_http_only: 1