shopify本地開發 新的地方

天涯越野發表於2023-11-11

看了一些教程有些舊地方通不過,自己摸索下

1、建立app

點選Settings,再點選Apps and sales channels

 點Allow custom app development

繼續

 然後建立app

 輸個app名字 ,然後點 Create app

2、 設定api許可權

點Configuration,再點Configure

在搜尋框輸入 theme , 勾上write_themes、read_themes,然後點save 儲存

點 install app

 再點確定

然後記錄下  Admin API access token,後面會用到

 3、獲取獲取商店theme ID

theme get --list --password=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 --store=3e9339-3.myshopify.com

(password後面上面記錄Admin API access token; store後面可以在瀏覽器url找到)

 前面數字就是商店theme ID

4、拉取商店theme程式碼

  theme get --password=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 --store=3e9339-3.myshopify.com -t=125110747234

(password後面上面記錄Admin API access token; store後面可以在瀏覽器url找到; t後面是上面獲取的商店theme ID)

 5、執行

  shopify theme serve

 然後就可以點連結檢視網頁了

6、修改好了推送到shopify

shopify theme push

 然後選擇你推送的那個 再輸入 y 就行

 

不過還是推薦下面這種gitlab這種

https://about.gitlab.com/blog/2022/04/14/deploy-shopify-themes-with-gitlab/

相關文章