Why Nitrous.io?
Why not? Nitrous.io is a cloud development environment this means you can code for free using a Web Browser in your computer or tablet; or even using a SSH client from anywhere. You also have access to a Web IDE and collaborative coding.Nitrous.io allows to code in several programming language such as Ruby on Rails, Python with Django, Node.js and Go but it does not explain how to code with Perl on Dancer.
Installing Dancer on Nitrous.io.
The installation process is similar to what was explained in the post Preparing the dance floor but there is a few minor changes.Cpanminus cannot be installed in a share directory you so cannot use the sudo option and the installation will be done in ~/perl5. After it is installed, the directory ~/perl5/bin need to be included in the PATH variable.
This file contains 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
curl -L http://cpanmin.us | perl - App::cpanminus | |
echo 'export PATH=$PATH:$HOME/perl5/bin' >> ~/.bashrc | |
. ~/.bashrc | |
cpanm App::cpanoutdated | |
cpanm App::cpanlistchanges |
This file contains 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
# (Optional) Print a list of the outdated modules: | |
cpan-outdated -p | |
# (Optional) See the changes for the outdated modules: | |
cpan-listchanges `cpan-outdated -p` | |
# Update the outdated modules: | |
cpan-outdated -p | cpanm |
This file contains 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
cpanm Dancer |
Create the application
To create the application and start it just do the same you do in other environment.cd workspace dancer -a myapplication cd myapplication mv bin/app.pl bin/server.pl ./bin/server.plTo view the application, in the upper left side, select Preview > Port 3000. In the new browser tab there is your new application.
To have the application on Github follow the instructions from Nitrous.io help in http://help.nitrous.io/github-add-key/.
Nitrous.io is just another good option to develop your dancer application. There are pros and cons about this, but this is a great opportunity to dance in the clouds.
No comments:
Post a Comment