[Special Summer Sale] 40% OFF All Magento 2 Themes

Cart

How to develop Shopify themes locally?

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #9229
    David Hoang
    Keymaster

    I’m going to work on a Shopify theme, and I want to figure out how to run/edit it locally. I’d like to be able to the following, if possible:

    1. Pull all the Shopify theme code from the site to my local computer (ideally a single command line tool)
    2. Make edits locally, and run them locally or in a staging environment
    3. Push all the edits to the main Shopify site, again using a command line tool

    Is this at all possible?

    #9230
    David Hoang
    Keymaster

    Shopify have built a tool for Mac that allows you to develop your theme locally, and sync with your store https://apps.shopify.com/desktop-theme-editor

    I don’t know of anything for windows/Linux etc.

    #9237
    David Hoang
    Keymaster

    There are quite a few workflows you can use here.

    1. Task runners

    If you’re using either Gulp or Grunt locally for development, there are libraries out there that will upload your files to the store through API credentials of a Private App that you have to create. Most work by uploading the files you change, using a watcher.

    1. grunt-shopify
    2. grunt-shopify-upload
    3. gulp-shopify-upload (it’s my favourite since I use Gulp but has a known issue that sometimes it stops uploading files and you have to restart it).

    2. Official Shopify Theme Kit

    Theme Kit is a cross-platform CLI tool that was built by Shopify Employees. It can run on windows/linux/OS X. You can read more about it on Shopify Blog or download it directly. The alternative previously mentioned of Desktop Theme Editor is deprecated and has been replaced by Theme Kit.

    3. Third-party SaaS Applications

    Instead of watching for changes, these will work with a continuos integration workflow, where your latest push on a certain branch gets uploaded to the theme you’ve selected.

    1. Beanstalk. More specific information can be found on their landing page for Shopify, here.
    2. DeployBot. Their help article on Shopify has some information on how to get started.
      Both options are from the same company. Here’s a comparison of both they’ve did on their blog.

    4. Third-party libraries

    1. There’s also an alternative not officially supported by Shopify which is a TextMate Bundle in case you use that OSX editor.

    2. There’s an unofficial extended cli similar to theme kit but with further functionality called Quickshot, which I’ve just found out based on Matt’s response and seems pretty awesome. Some of the features they highlight are:

      • Supports uploading to multiple Shopify stores and themes
      • Easy to use configuration wizard
      • Uploads/downloads in parallel greatly reducing transfer times
      • Supports autocompiling scss locally before uploading to Shopify
      • Supports autocompiling Babel/ES6 into modules which are easily used by – Requirejs and others
      • Can use with .gitignore files or a custom .quickshotignore file.
      • Can download/upload Shopify Blogs, Pages and Products! Easily transfer them between stores! Even the metafields! And edit them locally in your favorite editor.
    #9233
    David Hoang
    Keymaster

    Juan’s answer is spot on.

    There’s one more I know of which I believe is a little more advanced than Themekit (which I use) called Quickshot: https://quickshot.readme.io/v2.1/docs

    #9236
    David Hoang
    Keymaster

    Shopify recently released Slate, a new tool for theme development.

    https://github.com/Shopify/slate

    #9231
    David Hoang
    Keymaster

    Install the state package by running the following commands:

    npm install -g @shopify/slate
    slate theme theme-name
    
    #9232
    David Hoang
    Keymaster

    If you’re looking for completely offline development, it’s unfortunately not possible at this time. While the Slate/ThemeKit CLIs lets you code in your favorite text editor, an internet connection is still required because it likes to keep everything in sync at all times.

    #9235
    David Hoang
    Keymaster

    As of 2020, Shopify has stopped support Slate so you can now use Themekit – https://shopify.github.io/themekit/

    #9234
    David Hoang
    Keymaster

    2022 update

    Currently it is not possible to run Shopify locally. There are only solutions, mentioned in other answers to edit files locally and upload it to Shopify. It makes the development hard.

    I am working on a solution to emulate Shopify locally making development similar to WordPress, React or Angular. So you will see changes immediately, even without reloading the page and without the need to upload files to Shopify each time.

    You can read more here: https://link.medium.com/6SGd1kcVdnb

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.