uurcank / shopify-hotwire-sample

A sample app for Shopify's JWT integration with Hotwire Turbo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shopify Hotwire Sample

The sample app includes:

Since the shopify_app gem is not fully compatible with App Bridge 2 this sample uses fork.

Shopify Hotwire Sample

The old App Bridge 1 sample can be found in app-bridge-1 branch. The old App Bridge 2 sample can be found in app-bridge-2 branch.

Dependencies

  • Redis
  • Postgres

OAuth Tunnel in Development

In order to redirect OAuth requests securely to localhost, you'll need to setup a tunnel to redirect from the internet to localhost.

To do that, you can install the cloudflared CLI tool, and run:

# Note that you can also use a different port
cloudflared tunnel --url http://localhost:3000

You will need to keep this window running to maintain the tunnel during development.

For more advanced tunnel setup check out article Setting up Cloudflare Tunnel for development.

Quick start

To run this sample locally, you can clone this repository and do the following.

  1. Create a new app in your Shopify Partner account unless you already have one.

  2. Connect to Shopify:

shopify app connect

It will generate .env file with Shopify API credentials.

  1. Add HOST with your cloudflare tunnel to .env file:
HOST=https://<Your tunnel host>
  1. Update your app URLs in the Shopify Partner dashboard to point to your tunnel.

Set the App URL to https://<your tunnel host>/ and the Allowed redirection URL(s) to https://<your tunnel host>/auth/shopify/callback.

  1. Setup Rails app:
bin/setup
  1. Start the app:
bin/dev
  1. Install and open this app on a development shop.

Heroku Setup

To run your app in Heroku you need add the Shopify API Key, Shopify API Secret and Host to your config vars. You find the API Key and API Secret in your app setup. The host is your heroku app domain.

This templates config vars are: SHOPIFY_API_KEY, SHOPIFY_API_SECRET, HOST

About

A sample app for Shopify's JWT integration with Hotwire Turbo


Languages

Language:Ruby 64.7%Language:HTML 20.5%Language:JavaScript 14.3%Language:Shell 0.5%Language:CSS 0.1%