-
-
Notifications
You must be signed in to change notification settings - Fork 120
/
.env.example
41 lines (35 loc) · 1.39 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
SHOPIFY_API_KEY=
SHOPIFY_API_SECRET=
SHOPIFY_API_SCOPES=
SHOPIFY_API_OPTIONAL_SCOPES=
SHOPIFY_APP_URL=https://ngrok-url.io
SHOPIFY_API_VERSION="2024-10"
DATABASE_URL="postgres:https://username:[email protected]:5432/shopify-app?schema=public"
ENCRYPTION_STRING=
## App Details
# App's name as in your Partner dashboard. Ex: "My App"
APP_NAME=
# App's URL that you want in the store. No spaces, use `-` instead. Ex: "my-app"
APP_HANDLE=
## App Proxy
APP_PROXY_PREFIX="apps"
APP_PROXY_SUBPATH=""
# Prefix can be `apps`, `a`, `community` or `tools`. Any other value will yield in errors.
# Proxy URL is autofilled
# If `APP_PROXY_PREFIX` or `APP_PROXY_SUBPATH` is left blank, no app proxy entry is created
## Point of Sale
POS_EMBEDDED=false
## Access
DIRECT_API_MODE=
# Direct API Mode can be either `online` or `offline`
EMBEDDED_APP_DIRECT_API_ACCESS=
# Embedded app direct api access mode is either true or false.
# Read more about direct api access here:
# https://shopify.dev/docs/api/admin-extensions#direct-api-access
# No entries are created if left blank
# To quickly install the app on your store, use this URL:
# https://storename.myshopify.com/admin/oauth/install?client_id=SHOPIFY_API_KEY
## Notes:
# Ensure SHOPIFY_APP_URL starts with `https://`.
# When deploying to Vercel, don't wrap any values in quotes.
# Despite what anyone tells you, updating anything in the `env` requires a restart of the dev server.