forked from mojolicious/mojo
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
forwardever edited this page Oct 12, 2010
·
12 revisions
This is what helped me to get started with mojo, perhaps it helps you, too. ;-)
First of all, you need to install Mojolicious
sudo -s 'curl -L cpanmin.us | perl - Mojo'Easily start your new Mojolicious project:
mojolicious generate helpgives you a list of options.
mojolicious generate appgenerates "my_mojolicious_app"
mojolicious generate app hello_worldgenerates "hello world"
You then find a directory structure with a preconfigured application.
The first thing you will need is to start your mojolicious application:
script/[your_app]where [your_app] is the name of your application.
script/hello_worldin the example above.
Now follow the Guides on Github.