Last active
March 18, 2021 01:00
-
-
Save CodeBrotha/947b9fd54eabe149d09c85499e73a06a to your computer and use it in GitHub Desktop.
Shopify Themekit Config Template. (config-example.yml)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This is your TEST dev theme [in Test env]. You should make all your changes here and view on test store while working. | |
development: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Test Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of your Dev theme on live store. | |
## TEST Staging theme [in Test env] | |
staging-test: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Test Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of the Staging theme you will push your changes to when finished. | |
## TEST Production theme [in Test env] | |
production-test: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Test Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of the store's LIVE theme. | |
## This is your dev theme [in Live env]. Deploy to this theme to check your changes in the live env. | |
development-live: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Live Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of your Dev theme on live store. | |
## Staging theme [in Live env] - Deploy to this theme after your changes have been completed in your theme. | |
staging: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Live Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of the Staging theme you will push your changes to when finished. | |
## LIVE Production theme [in Live env] - DO NOT WORK IN THIS THEME!!! | |
production: | |
<<: *shared | |
store: STORE_NAME_HERE.myshopify.com ## Live Store name. | |
password: ADD_PASSWORD_HERE ## Private App password from Shopify. | |
theme_id: 'ADD_THEME_ID_HERE' ## ID number of the store's LIVE theme. | |
shared: &shared | |
ignore_files: | |
- "*.swp" | |
- "*~" | |
- node_modules/ | |
- src/ | |
- package.json | |
- yarn.lock | |
- webpack.*.js | |
- ".babelrc" | |
- README.md |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment