NAME

Ado::Manual::Installation - Various ways to install and deploy Ado

DESCRIPTION

We strongly recommend using Ado with your own Perl (not the system-wide)! This will give you freedom to install modules from CPAN etc.

Get a precompiled Perl distro like "Citrus Perl" (http://www.citrusperl.com/download.html) or "ActivePerl Community Edition" (http://www.activestate.com/activeperl/downloads) for your OS, or build your own using App::perlbrew.

Ado can be downloaded from CPAN and installed manually or installed into any folder of your choice. By default it goes into the siteprefix folder of the perl distribution used for installation.

INSTALLATION METHODS

When installing Ado in its own folder, you may want to add the /path/to/ado/bin to your $PATH environment variable.

MANUAL

To install manually Ado after downloading, run the following commands:

tar -zxf Ado-X.XX.tar.gz
cd Ado-X.XX/
perl Build.PL --install_base $HOME/opt/ado
#or if you want it in your Perl file tree
perl Build.PL
./Build installdeps
./Build
./Build test
./Build install

CPAN

cpanm Ado
#or
cpan[1]> install Ado
Running install for module 'Ado'
Running make for B/BE/BEROV/Ado-0.85.tar.gz
...  
...
  BEROV/Ado-0.85.tar.gz
./Build install install  -- OK

PERLBREW

Installing Ado under your own perlbrew environment

perlbrew init
perlbrew install -n perl-5.18.1 --as ado -j 3
perlbrew switch ado
perlbrew install-cpanm
cpanm Ado

Carton

Installing Ado using Carton

echo 'requires "Ado";' > cpanfile
carton install
carton exec local/bin/ado daemon

local::lib

Be warned that local::lib, installed on some shared hosting providers' machines, sets the environment variables $PERL5LIB, $PERL_LOCAL_LIB_ROOT, $PERL_MB_OPT, $PERL_MM_OPT. If you are aware and expect Ado to be installed in $PERL_LOCAL_LIB_ROOT (usually ~/perl5) then fine. If you are using your own Perl and not the provided on the machine, you have to reset those variables while installing Ado. Otherwise you may be unpleasantly surprised. For ActivePerl it may be best to install Ado dependencies using PPM. Ado is available as PPM package too.

export PERL_MB_OPT='--install_base /home/you/example.com'
#your own perl is already in $PATH and dependencies are installed
perl Build.PL
./Build install

SEE ALSO

Ado::Manual, Ado, Mojolicious::Guides, "prefix_vs_install_base" in Module::Build::Cookbook

COPYRIGHT AND LICENSE

Copyright 2013-2015 Красимир Беров (Krasimir Berov).

This program is free software, you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License v3 (LGPL-3.0).