File tree Expand file tree Collapse file tree 4 files changed +561
-8
lines changed Expand file tree Collapse file tree 4 files changed +561
-8
lines changed Original file line number Diff line number Diff line change 4
4
# No special permissions needed for public repositories
5
5
GITHUB_TOKEN = your_github_token_here
6
6
7
+ # Shopify Configuration (for Merch Store)
8
+ # Get these from: Shopify Admin > Settings > Apps and sales channels > Develop apps
9
+ # Required scopes: unauthenticated_read_product_listings, unauthenticated_write_checkouts
10
+ SHOPIFY_STORE_DOMAIN = your-store.myshopify.com
11
+ SHOPIFY_STOREFRONT_ACCESS_TOKEN = your_storefront_access_token_here
12
+
7
13
# Firebase Configuration (if needed)
8
14
# FIREBASE_API_KEY=your_firebase_api_key
9
15
# FIREBASE_AUTH_DOMAIN=your_firebase_auth_domain
Original file line number Diff line number Diff line change @@ -156,11 +156,6 @@ const config: Config = {
156
156
html : '<span class="nav-emoji">💰</span> Donate' ,
157
157
position : "left" ,
158
158
} ,
159
- {
160
- to : "/merch" ,
161
- html : '<span class="nav-emoji">🛍️</span> Merch' ,
162
- position : "left" ,
163
- } ,
164
159
{
165
160
type : "dropdown" ,
166
161
html : '<span class="nav-emoji">👩🏻💻</span> Devfolio' ,
@@ -206,6 +201,10 @@ const config: Config = {
206
201
label : "🎙️ Podcast" ,
207
202
to : "/podcasts/" ,
208
203
} ,
204
+ {
205
+ label : "🛍️ Merch Store" ,
206
+ to : "/merch" ,
207
+ } ,
209
208
] ,
210
209
} ,
211
210
// Search disabled until Algolia is properly configured
@@ -270,6 +269,9 @@ const config: Config = {
270
269
// ✅ Add this customFields object to expose the token to the client-side
271
270
customFields : {
272
271
gitToken : process . env . DOCUSAURUS_GIT_TOKEN ,
272
+ // Shopify credentials for merch store
273
+ SHOPIFY_STORE_DOMAIN : process . env . SHOPIFY_STORE_DOMAIN || 'junh9v-gw.myshopify.com' ,
274
+ SHOPIFY_STOREFRONT_ACCESS_TOKEN : process . env . SHOPIFY_STOREFRONT_ACCESS_TOKEN || '2503dfbf93132b42e627e7d53b3ba3e9' ,
273
275
hooks : {
274
276
onBrokenMarkdownLinks : "warn" ,
275
277
} ,
You can’t perform that action at this time.
0 commit comments