Tutorial: How to Deploy the Spree Sample Application on Engine Yard

Overview

Spree is a complete open source e-commerce solution for Ruby on Rails. It was designed to make customization and upgrades as simple as possible and comes in the form of a Rails Engine and must be created inside a host application. Engine Yard's repository contains a Spree host application with some additional tools to help you deploy on Engine Yard. After reviewing this, you should create your own Spree application or fork this one and make the appropriate customizations.

Create and deploy the application

The code for the Spree application that you create in this procedure is in Engine Yard's public repository on GitHub.

To create the Application:

  1. If you are not already signed in to your Engine Yard account, log in now to https://cloud.engineyard.com/

  2. Click on 'Add an Application':
    Add_an_Application.png
  3. This launches the Create new application screen as shown below:
    Create_new_application.png
  4. Set up the application as follows:

    • Application Language: Ruby
    • Git Repository URI: https://github.com/engineyard/spree_sample_app.git 
    • Application Name: This is auto-populated from the Git Repository URI i.e. spree_sample_app. Feel free to change as appropriate.
    • Web Application Framework: Rails 5
  5. Click 'Create Application'

    The Create New Environment for the 'spree_sample_app' App page appears:
    Create_new_Environment.png

  6. Next, you will configure and boot the Environment for the 'spree_sample_app' application.

To create the Environment:

  1. On the 'Create New Environment' page shown above, enter a name for your Environment.

    This should be a name that uniquely identifies the environment on your dashboard.

    Important! This name cannot be edited after the environment is created.

  2. Set up the environment as follows:

    • Choose Puma as your Application Server Stack (*)
    • Use a stable-v5 Stack
    • Use Ruby 2.3 as Runtime
    • Choose MySQL 5.6 as your Database Stack (**)

    (*) If you don't find Puma in the application server list, refer to this link.

    (**) Spree supports any database ActiveRecord does. We recommend MySQL specifically for this guide because our sample data loading procedure uses mysqldump and restore commands. Our sample data is considerably larger than the default one which is a better representation of a live e-commerce website. That way you can make an educated decision after appraising performance.

  3. Click 'Create Environment' at the bottom of the page.

    The Configuration for spree_demo page appears:
    Configuration_for_spree_demo_-_Boot_configuration.png

  4. Booting a cluster

    Now you have a chance to define the cluster configuration for this environment. Go ahead and choose a Staging Configuration to take advantage of app server redundancy and dedicated database instances. After this, feel free to experiment with different options Engine Yard recommends or spin up your own.

     

  5. Click 'Boot This Configuration'.

    The spree_demo environment for the spree_sample_app application appears:

    spree_demo_environment.png

    Engine Yard works behind the scenes to start up the environment, configure and provision the instances, and finally deploying the app. Configuring the environment and spinning up the instances for the first time will take about 15 minutes.

    Tip: If you want to refresh to double-check on progress, click Engine Yard icon on the top left of the window rather than refreshing your browser:

    Refreshing_the_screen.png

  6. Verify that the deployment was successful. You should see a message similar to this:

     

  7. If you do not see a successful deploy message, click Deploy.

Run the Spree application

In this procedure, you run the Spree application that you deployed.

To run the Spree application

  1. Verify that the indicator is green.

    It might take 5 minutes or more for the new instance to load and the indicator to turn green.

    12_Instance_green.png

    Tip: A green indicator means that the instance is loaded -- it does not necessarily mean that the application has deployed successfully. A red indicator means there was a problem configuring the instance.

  2. Click Visit Your Application.

    13_Visit_ToDo_App.png

    (You can also click on HTTP for the instance.)

    The Spree application appears.

     

Comments

Article is closed for comments.