You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an example Shopify application written in Sinatra solely for the purposes of introducing new developers to the Shopify API.
4
+
5
+
This example uses a `.env` file to store the application credentials. After cloning the repository, you'll need to create a file named `.env` in the same folder. The contents of the file should be as follows:
6
+
```
7
+
API_KEY=YOUR_API_KEY
8
+
API_SECRET=YOUR_SECRET_KEY
9
+
```
10
+
11
+
where API_KEY and API_KEY are the values of your application's API key and secret key respectively.
12
+
13
+
To get started with this example:
14
+
1. Create the `.env` file as described above.
15
+
1.`bundle install` to obtain all of the necessary dependencies
0 commit comments