next-shopify-storefront
Version:
A Shopping Cart built with TypeScript, Tailwind CSS, Headless UI, Next.js, React.js, Shopify Hydrogen React,... and Shopify Storefront GraphQL API.
18 lines (13 loc) • 592 B
JavaScript
import * as dotenv from 'dotenv';
import { execSync } from 'child_process';
dotenv.config();
const storeDomain = process.env.NEXT_PUBLIC_SHOPIFY_STORE_DOMAIN;
const publicStorefrontToken = process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_API_TOKEN;
const storefrontApiVersion = process.env.NEXT_PUBLIC_SHOPIFY_STOREFRONT_API_VERSION;
const apiEndpoint = storeDomain + `/api/${storefrontApiVersion}/graphql.json`;
execSync(
`node_modules/.bin/zeus ${apiEndpoint} ./src/utilities/storefront --header=X-Shopify-Storefront-Access-Token:${publicStorefrontToken}`,
{
stdio: 'inherit',
}
);