search
HomeBackend DevelopmentPHP TutorialGetting Started with Laravel on Nitrous.io

Nitrous.IO Adds PHP Support: A Laravel App Quick Start

On February 12th, Nitrous.IO, a cloud-based development environment enabling rapid virtual machine setup and cross-platform access via its Web IDE, finally introduced long-awaited PHP support. This tutorial demonstrates creating a Laravel application on Nitrous.IO. Basic Unix command-line familiarity is assumed.

Key Features:

  • Nitrous.IO now supports PHP, facilitating Laravel app development within its cloud environment. Quickly provision virtual machines accessible from any device through the Web IDE.
  • Account creation and box provisioning are the first steps. PHP support can be added to the box, with customizable resource allocation. Alternative templates can also be used, allowing for the installation of PHP-related tools (Apache, PHP, MySQL, etc.).
  • The platform supports PECL library installation, virtual host configuration, and Composer management (globally installed due to limited box storage).
  • Laravel setup and a sample application are demonstrated, including MySQL database connection and sample data creation.

Getting Started:

Create a Nitrous.IO account (referral links may offer benefits). Add your public SSH key for streamlined SSH access (GitHub provides a helpful guide).

Creating a Box:

Navigate to the "Boxes" section and click "New Box." Select PHP, choose a nearby region, and allocate resources (unused nitrous is refunded upon box termination).

Getting Started with Laravel on Nitrous.io

After clicking "Create Box," the box will be provisioned (similar to Vagrant, but faster).

Getting Started with Laravel on Nitrous.io

The familiar interface appears, along with a setup guide. Alternatively, install PHP tools (Apache, PHP, MySQL) using Autoparts -> Install Parts if using a non-PHP template. Verify PHP version (should display 5.5.8 in a PHP box template).

Getting Started with Laravel on Nitrous.io Getting Started with Laravel on Nitrous.io

PhpInfo:

Create index.php in the www subfolder with <?php phpinfo(); ?>. Access via Preview -> Port 3000 (default). Other ports require httpd.conf modification (vim /home/action/.parts/etc/apache2/httpd.conf). The file browser (with "Show Hidden" enabled) also provides access.

Getting Started with Laravel on Nitrous.io Getting Started with Laravel on Nitrous.io

Installing PECL libs:

Composer requires the Zip library. Install using:

pear config-set php_ini /home/action/.parts/etc/php5/php.ini
pecl config-set php_ini /home/action/.parts/etc/php5/php.ini
pecl install zip

(Use CTRL SHIFT V to paste.)

Configuring a Virtual Host:

Create a virtual host (recommended over renaming www to public). Edit httpd.conf:

<VirtualHost *:4000>
    ServerName doesnotmatter
    DocumentRoot "/home/action/workspace/myapp/public"
    ServerAdmin bruno.skvorc@sitepoint.com
    <Directory "/home/action/workspace/myapp/public">
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

Add Listen 0.0.0.0:4000 (and other desired ports) to httpd.conf. Create the myapp/public directory (mkdir -p /home/action/workspace/myapp/public). Add index.php to this directory. Restart Apache (parts restart apache2). Access via Preview -> Port 4000.

Getting Started with Laravel on Nitrous.io

Installing Composer (Note: Now pre-installed, this section details custom binary installation):

Install Composer globally:

mkdir ~/.tools
cd ~/.tools
curl -sS https://getcomposer.org/installer | php
vim ~/.bashrc

Add export PATH=$PATH:$HOME/.tools/ to .bashrc. Reload .bashrc (source ~/.bashrc). Test with composer self-update.

Getting Started with Laravel on Nitrous.io

Creating a Sample Laravel App:

Remove myapp (rm -rf /home/action/workspace/myapp). Create the Laravel app:

cd /home/action/workspace
composer create-project laravel/laravel myapp --prefer-dist

Access via port 4000. Add a test route to app/routes.php:

Route::get('test', function() {
    return 'Test!';
});

Connecting Laravel to MySQL:

Verify MySQL access (mysql -u root). Laravel defaults to Nitrous' settings. Change the database name to "sample" in app/config/database.php. Create a sample database and table using:

wget -O- -q https://gist.github.com/Swader/8994154/raw/9bb8d253f92791de77fa01138febd404a306ccc6/sample.sql | mysql -u root

Modify the test route to display database data:

Route::get('test', function() {
  var_dump(DB::select('select * from test'));
});

Getting Started with Laravel on Nitrous.io

Conclusion:

This demonstrates the ease of setting up Laravel on Nitrous.IO. Experiment freely; box recreation is straightforward. The advantages of virtual machines for development are highlighted.

(Note: The original article's FAQs about Laravel and the now-defunct Nitrous.IO have been omitted as they are no longer relevant.)

The above is the detailed content of Getting Started with Laravel on Nitrous.io. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment