Amber Shopify Project created using ReactJS+React-Redux with GraphQL API integration. Storefront Shopify API: https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/storefront-api-client#readme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ecosystem.config.js 481B

1234567891011121314151617
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'amber-app',
  5. script: 'npm',
  6. args: 'start',
  7. env: {
  8. NODE_ENV: 'development',
  9. REACT_APP_API_URL: process.env.REACT_APP_API_URL,
  10. REACT_APP_API_KEY: process.env.REACT_APP_API_KEY,
  11. REACT_APP_API_SECRET: process.env.REACT_APP_API_SECRET,
  12. REACT_APP_ACCESS_TOKEN: process.env.REACT_APP_ACCESS_TOKEN,
  13. REACT_APP_SHOP_NAME: process.env.REACT_APP_SHOP_NAME,
  14. },
  15. },
  16. ],
  17. };