DEV Community

Cover image for Managing and Handling Configurations in a Shopify App
Josh Boddy
Josh Boddy

Posted on

Managing and Handling Configurations in a Shopify App

Many Shopify App developers have likely encountered several .toml files scattered across their workspaces. These files are found not only in the root folder of your app but also within any extensions you might have generated. What exactly are these files? I'm delighted you're curious.

TOML, or Tom's Obvious Minimal Language files, contain data that can be parsed and utilised by developers. Think of them as a minimal database holding essential information your app requires to function, such as your app's name, access key, and all the URLs your app needs to connect to.

Managing these files might seem overwhelming, but they're a valuable asset in app development, aiding in various tasks like deployment.

If you've used npm run deploy, you might have also noticed a .env file. We've previously discussed environment variables (stored within .env files), but today we'll delve deeper into managing your app's critical data efficiently.

Understanding TOML Files

Consider TOML files as "Shopify Owned." The data within these files is often sent to Shopify's servers. If you check your Partners Dashboard under "Configuration," you'll find much of the same information that's in your TOML file. This is because they're interconnected.

When you execute npm run dev or npm run deploy, Shopify extracts data from your TOML file, ensuring it matches their records. This process highlights the importance of your TOML file as the source of truth for your app, dictating how Shopify deploys and accesses your app and the permissions it has.

It's wise to maintain separate TOML files for development and production to avoid any mix-ups. You can easily switch between these files using the npm run shopify app config use <TOML> command, substituting <TOML> with the desired file's name.

TOML files include crucial information like:

  • Scopes: Permissions your app requests from stores. Adding a scope means updating your TOML file and deploying, but be aware that some scopes might require Shopify's approval.
  • Endpoints: URLs in the file should link back to your app, with development files pointing to your tunnel endpoint and production files to your live URL.
  • API Version: This specifies the API version your requests target. Use the most up-to-date version or "unstable" for Developer Preview features, albeit with caution.
  • Client ID: This identifies your app to Shopify, so ensure it matches the one in your Partners Dashboard.

To mitigate errors:

  • Pay attention to the deployment logs, which display your app's name and connected store. This helps catch any unintended connections to production.
  • Use the Partners Dashboard to correct any misconfigurations quickly.
  • If a development TOML file mistakenly makes it into production, a subsequent commit with the correct production TOML should resolve the issue.

Despite their complexity, TOML files become manageable with understanding and careful practice.

The Role of .env Files

.env files store environment variables, which are crucial for your app's functioning without exposing sensitive data. They're prevalent across development projects, offering a secure way to store essential variables.

You can define environment variables in a .env file without specifying types, ensuring proper escaping for non-standard values. These variables become accessible in your project via the dotenv package, allowing you to reference them as process.env.VARIABLE_NAME.

Remember, never commit your .env files to your repository to prevent sensitive data exposure.

Handling Deployment and .gitignore

The .gitignore file is your safeguard against committing sensitive files to your repository. By listing TOML and .env files here, you prevent them from being accidentally included in your commits, streamlining your workflow and enhancing security.

Conclusion

TOML and .env files are fundamental in configuring your Shopify app, facilitating secure communication and data handling with Shopify. While they may initially seem intimidating, a clear understanding and careful management will allow you to deploy your app efficiently and securely, accessing a wealth of information safely.

Happy coding,

~ Josh

Top comments (1)

Collapse
 
alexflare profile image
Alex Hooper

Nice job!