This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # example Dezi server config file, in Perl format | |
| # Dezi uses Config::Any, so any format supported by | |
| # that module should work as well. | |
| #use SWISH::Prog::Config; | |
| use CHI; | |
| my $c = { | |
| engine_config => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Lucy::Simple; | |
| my $index = Lucy::Simple->new( | |
| path => './index', | |
| language => 'en', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env perl | |
| # Example from https://metacpan.org/module/Lucy::Simple | |
| use Lucy::Simple; | |
| my $index = Lucy::Simple->new( | |
| path => './index', | |
| language => 'en', | |
| ); |
NewerOlder