Edit your Shopify theme locally
The Shopify theme gem is a command line tool that lets you make live changes to your published theme.
It will watch your local folders for any changes in your theme (including adding and removing files) and will update your .myshopify.com store to the latest changes.
Requirements
Ruby 1.9
Installation
gem install shopify_theme [optional_theme_id]
Usage
Generate the config file. Go get a valid api_key and password for your store head to https://[your store].myshopify.com/admin/apps/private and generate a private application. Default it adds the main theme, if you want to edit one of your other themes, add the theme_id.
theme configure api_key password store_url
Example of config.yml. Notice store has no http or https declaration. You can
use :whitelist_files: to specify files for upload. The assets/, config/,
layout/, snippets/ and templates/ directories are included by default.
---
:api_key: 7a8da86d3dd730b67a357dedabaac5d6
:password: 552338ce0d3aba7fc501dcf99bc57a81
:store: little-plastics.myshopify.com
:theme_id:
:whitelist_files:
- directoryToUpload/
- importantFile.txt
Download all the theme files
theme download
Upload a theme file
theme upload assets/layout.liquid
Remove a theme file
theme remove assets/layout.liquid
Completely replace shop theme assets with the local assets
theme replace
Watch the theme directory and upload any files as they change
theme watch
Open the store in the default browser
theme open
Common Problems
When trying to run theme watch on Windows the application crashes with a gross stack trace
The gem doesn't install one of the dependencies you need in order to use this gem correctly on Windows. You
can get around this by either executing gem install wdm or by creating a Gemfile in your theme project such
as the following:
source "http://rubygems.org" # I could not validate the rubygems SSL certificate on Windows
gem "wdm"
gem "shopify_theme"