Skip to content
A light-weight route-based web application framework for Perl 6
Branch: master
Clone or download
Latest commit 13a2397 Mar 7, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
bin Ticket #265 - fixed xt tests Oct 1, 2017
doc Export the from-json method from JSON::Fast. Jan 29, 2018
examples fixed tidy and lint errors Dec 31, 2017
lib
logs Configure logs based on configuration array. Oct 8, 2017
resources Ticket #201 - moved skeleton files into resources/ and therefore crea… Aug 3, 2017
t Adapt to function style Path::Finder Feb 9, 2019
xt changes to get t/19-logging.t working (#292) Feb 21, 2018
.gitattributes
.gitignore feature/configurable plugin system (#286) Dec 31, 2017
.travis.yml removed --loose from prove6 Apr 5, 2018
CONTRIBUTING.md switch back to main branch - versioning model Mar 7, 2019
Changes 0.0.18 Mar 7, 2019
Dockerfile Official flag used Dec 8, 2017
ISSUE_TEMPLATE.md Merge branch 'dev' into patch-4 Sep 25, 2017
LICENSE
META6.json
README.md Update README.md (#303) Jul 9, 2018
appveyor.yml Adapt to rename of Path::Iterator to Path::Finder Feb 9, 2019
dist.ini Added dist.ini for App::Mi6 #151 Nov 7, 2017
ducky.json fix for #278 Nov 7, 2017
ducky.md

README.md

Build Status Build status Average time to resolve an issue Percentage of issues still open License: MIT Maintenance

NAME

Bailador

SYNOPSIS

use Bailador;

get '/' => sub {
    "Hello World";
}

baile();

DESCRIPTION

Bailador is a light-weight route-based web application framework for Perl 6. Talk to the developers at https://perl6-bailador.slack.com/

INSTALLATION

Once you have Rakudo Star installed open a terminal (or command line on Windows) and type:

$ zef update
$ zef install Bailador

This should download and install Bailador.

You can test your installation, and see what is your Bailador installed version with the following command:

$ bailador version

NB: If you are using Rakudobrew you may need to run the following command to make bailador available in your terminal:

$ rakudobrew rehash

GETTING STARTED

At the command prompt, create a new Bailador application:

$ bailador new App-Name

Then, change directory to App-Name and start the web server:

$ bailador watch bin/app.pl6

That's it! Using a browser, go to http://localhost:3000. Isn't it wonderful?

You can now edit the files and Bailador reloads the application while you're developing.

If you want to learn more about Bailador, please visit our documentation.

EXAMPLES

For more examples, please see the examples folder.

BAILADOR RESOURCES

You can find a list of Bailador resources (articles, posts, talks, books, ...) here.

Bailador-based applications

Related projects

https://github.com/pnu/heroku-buildpack-rakudo

CONTRIBUTION

GitHub contributors

We encourage you to contribute to Bailador! If you'd like to do that, see first the CONTRIBUTING document.

LICENSE

Bailador is released under the MIT License.

You can’t perform that action at this time.