Skip to content

Instantly share code, notes, and snippets.

@james-prado
Created May 24, 2025 00:11
Show Gist options
  • Select an option

  • Save james-prado/18bfa7e1c832990c7ec04f8eeebff51c to your computer and use it in GitHub Desktop.

Select an option

Save james-prado/18bfa7e1c832990c7ec04f8eeebff51c to your computer and use it in GitHub Desktop.
Example Shopify CLI scripts
#!/usr/bin/bash
shopify theme pull --store "$STORE" --theme "$THEME_ID"
#!/usr/bin/bash
shopify theme push --nodelete --ignore 'templates/*.json' 'config/settings_data.json' 'locales/en.default.json' 'sections/*.json' --store "$STORE" --theme "$THEME_ID"
#!/usr/bin/bash
shopify theme dev --nodelete --ignore 'templates/*.json' 'config/settings_data.json' 'locales/en.default.json' 'sections/*.json' --store "$STORE" --theme "$THEME_ID"
#!/usr/bin/bash
shopify theme info --store "$STORE" --theme "$THEME_ID"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment