Skip to content

Instantly share code, notes, and snippets.

@ChrisSavoie
Created August 15, 2017 14:31
Show Gist options
  • Save ChrisSavoie/128438d08f5ea31530fde8517b5bef6d to your computer and use it in GitHub Desktop.
Save ChrisSavoie/128438d08f5ea31530fde8517b5bef6d to your computer and use it in GitHub Desktop.
Shopify Themekit Base Config
# This file contains the information needed for Shopify to authenticate
# requests and edit/update your remote theme files.
#
# 1. Set up a private app (https://help.shopify.com/api/guides/api-credentials#generate-private-app-credentials)
# with "Read and write" permissions for "Theme templates and theme assets".
# 2. Replace the required variables for each environment below.
#
# password, theme_id, and store variables are required.
#
# For more information on this config file:
# Configuration variables | http://shopify.github.io/themekit/configuration/
# Ignore patterns | http://shopify.github.io/themekit/ignores/
#
# Commands $: theme download #this downloads the development theme
# $: theme watch #this watches for changes to your local files
# $: theme download --env=production #this would download the LIVE theme.
---
development: &COMMON
password: private_app_password_goes_here
theme_id: your_name_theme_id_goes_here
store: store-name.myshopify.com
ignore_files:
- .git/
- .gitignore
production:
<<: *COMMON
theme_id: "live"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment