Skip to content

Commit 62b5d41

Browse files
committed
Rebranding from Atlas to Headless Platform
1 parent b9250b7 commit 62b5d41

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Atlas Shopify Blueprint
1+
# Headless Platform Shopify Blueprint
22

3-
A Shopify template for Atlas Blueprints.
3+
A Shopify template for Headless Platform Blueprints.
44

5-
This repository contains a starter Blueprint to get you up and running quickly on WP Engine's Atlas platform with a simple WordPress site that uses product data from Shopify.
5+
This repository contains a starter Blueprint to get you up and running quickly on WP Engine's Headless Platform with a simple WordPress site that uses product data from Shopify.
66

77
- [Check out the demo store here](https://atlasshopify.wpengine.com)
8-
- [Try a sandbox version of Atlas to get started with this Blueprint](https://wpengine.com/headless-wordpress/)
8+
- [Try a sandbox version of Headless Platform to get started with this Blueprint](https://wpengine.com/headless-wordpress/)
99
- [Documentation can be found here](https://developers.wpengine.com/docs/atlas-shopify-blueprint/introduction)
1010

1111
## Development
@@ -40,14 +40,14 @@ To run tests `npm run test`
4040

4141
`.nvmrc` is specifying that Node.js `v18` should be used. Any developer could then run `nvm use` to download, install, and switch to that version. `nvm install` will then install dependencies in line with that version.
4242

43-
## Configuring Shopify locally and on Atlas
43+
## Configuring Shopify locally and on Headless Platform
4444

4545
In addition to default environment variables the Shopify Blueprint needs to add 2 more as follows:
4646

4747
- NEXT_PUBLIC_SHOPIFY_HEADLESS_PUBLIC_ACCESS_TOKEN
4848
- NEXT_PUBLIC_SHOPIFY_GRAPHQL_URL
4949

50-
For local development these can be added to `.env.local` and for production deployments these can be added in Atlas Dashboard. See [WP Engine headless docs for directions on how to configure Atlas Environment Variables](https://developers.wpengine.com/docs/atlas/local-app-development/frontend-app-config#2--define-environment-variables).
50+
For local development these can be added to `.env.local` and for production deployments these can be added in Headless Platform Dashboard. See [WP Engine headless docs for directions on how to configure Headless Platform Environment Variables](https://developers.wpengine.com/docs/atlas/local-app-development/frontend-app-config#2--define-environment-variables).
5151

5252
## Creating a new Github release
5353

@@ -57,19 +57,19 @@ The steps involved with creating a new release are as follows :
5757
2. Run `npm install` and check the new version in the generated `package-lock.json`
5858
3. Create a PR against `develop` with the version update. Review and merge the PR.
5959
4. Create a PR from `develop` into the `main` branch and make sure it includes all the changes that are intended to be in the release. Review and merge the PR.
60-
5. In the User Portal (production), create a new Atlas App using the Shopify Blueprint and verify if changes are there and the version is correct.
60+
5. In the User Portal (production), create a new Headless Platform App using the Shopify Blueprint and verify if changes are there and the version is correct.
6161
6. Create a new release in Github with the tag as the latest version with `main` as the target. (For description you can use the `generate release notes` button)
6262
7. Post a message to [#team-pe-titan-public](https://wpengine.slack.com/archives/C04SJP4UBB7) using the following template:
63-
> 🚀 Atlas Shopify Blueprint - Version X.Y.Z 🚀
63+
> 🚀 Headless Platform Shopify Blueprint - Version X.Y.Z 🚀
6464
> We have released a new version of the blueprint. <Short sentences summarising the changes added>. For more details, follow this link: https://github.com/wpengine/atlas-shopify-blueprint/releases/tag/X.Y.Z
6565
6666
## For more information
6767

6868
For more information on this Blueprint please check out the following sources:
6969

70-
- [WP Engine's Atlas Platform](https://wpengine.com/headless-wordpress/)
70+
- [WP Engine's Headless Platform](https://wpengine.com/headless-wordpress/)
7171
- [Faust.js](https://faustjs.org/)
7272
- [WPGraphQL](https://www.wpgraphql.com/)
7373
- [Atlas Content Modeler](https://wordpress.org/plugins/atlas-content-modeler/)
7474
- [Shopify Storefront API](https://shopify.dev/docs/api/storefront)
75-
- [WP Engine's Atlas developer community](https://wpengine.com/builders/headless)
75+
- [WP Engine's Headless Platform developer community](https://wpengine.com/builders/headless)

components/SEO/__tests__/SEO.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe('<SEO />', () => {
1515
it('Render SEO with all requirements', () => {
1616
const props = {
1717
seo: {
18-
title: 'Atlas Shopify',
18+
title: 'Headless Platform Shopify',
1919
description: 'SUPER-powered Headless eCommerce',
2020
imageUrl: 'https://some-img-url.com',
2121
url: 'https://some-url.com',
@@ -31,7 +31,7 @@ describe('<SEO />', () => {
3131
/>,
3232
);
3333

34-
expect(document.title).toBe('Atlas Shopify');
34+
expect(document.title).toBe('Headless Platform Shopify');
3535
expect(document.querySelector('meta[name="description"]').content).toBe(
3636
'SUPER-powered Headless eCommerce',
3737
);

utilities/ConnectionUnavailable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const ConnectionUnavailable = () => {
66
<>
77
<p style={{ padding: '20px' }}>
88
To get started connecting your Shopify store, please make sure your
9-
Headless Public Access Token and GraphQL URL are added as Atlas
9+
Headless Public Access Token and GraphQL URL are added as Headless Platform
1010
environment variables. For more information, see{' '}
1111
<Link href="https://developers.wpengine.com/docs/atlas-shopify-blueprint/introduction">
1212
our documentation

utilities/shopifyClient.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client';
44
* The Apollo Client used to make requests to Shopify Storefront API.
55
*
66
* @param {ApolloLink} link The http configuration for the request.
7-
* @property {string} uri The base URL to Shopify Storefront API configured via Atlas Environment Variables.
8-
* @property {string} headers The headers configuration for the request including the API token configured via Atlas Environment Variables.
7+
* @property {string} uri The base URL to Shopify Storefront API configured via Headless Platform Environment Variables.
8+
* @property {string} headers The headers configuration for the request including the API token configured via Headless Platform Environment Variables.
99
*
1010
* @returns {ApolloClient} The Configured Apollo Client used to perform mutations and queries to Shopify Storefront API throughout the site.
1111
*/

0 commit comments

Comments
 (0)