Skip to content

Instantly share code, notes, and snippets.

@mshick
Last active March 29, 2022 19:11
Show Gist options
  • Select an option

  • Save mshick/6d1562d7cff768d259f06890132ce742 to your computer and use it in GitHub Desktop.

Select an option

Save mshick/6d1562d7cff768d259f06890132ce742 to your computer and use it in GitHub Desktop.
kitchen-sink-starter-env
# Locale for currency formatting
NEXT_PUBLIC_LOCALE='en-US'
# e.g.: 'dev-by9w1mxg.us.auth0.com'
NEXT_PUBLIC_AUTH0_DOMAIN='dev-by9w1mxg.us.auth0.com'
# Your Auth0 application's Client ID
NEXT_PUBLIC_AUTH0_CLIENT_ID='1QJOASpbt5JSfvmIDhIAJfHWohnpAF2a'
# Where to redirect after you login
NEXT_PUBLIC_AUTH0_REDIRECT_URI='http://localhost:3000/'
# Auth0 scopes to set, these are required for the necessary auth0 data
NEXT_PUBLIC_AUTH0_SCOPE='openid profile email offline_access'
# Auth0 audience must match the audience of your Custom API in Auth0 and TakeShape service
# Looks like: https://api.takeshape.io/project/f56d44bb-8261-41e0-b3ee-af37931cb493/my-auth-0-service-id
NEXT_PUBLIC_AUTH0_AUDIENCE='https://api.takeshape.io/project/79b5254d-5bc3-4034-8b05-e9c2f097de5a/auth-0'
# Copy the API Endpoint from your TakeShape Project > API > API Endpoint in the lower left
# Looks like: https://api.takeshape.io/project/f56d44bb-8261-41e0-b3ee-af37931cb493/v3/graphql
NEXT_PUBLIC_TAKESHAPE_API_URL='https://api.takeshape.io/project/79b5254d-5bc3-4034-8b05-e9c2f097de5a/v3/graphql'
# An API Key from TakeShape with the `anonymous` role
NEXT_PUBLIC_TAKESHAPE_ANONYMOUS_API_KEY='4cd8f565bed84e4b8018684afbddf46e'
# A Stripe API publishable key
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY='pk_test_51JG7sTEjMGaPiQ74KqSiOjmOM3A64zrSHkogtR9rzMfC3PZauNAwGV7nDZmH1tNx9LwcJT7pLoKwMZSHaW30EifX00dYuNHWaq'
# A Stripe API secret key
STRIPE_SECRET_KEY='sk_test_51JG7sTEjMGaPiQ74AnaACYy0WAXVg6siNFyt9zUqVMmaB2BF1DDAq2BcxRqNkWYLpDxTA8ljfNSJ5hV1JPmdAif700NVIIFfps'
# A Stripe webhook secret
STRIPE_WEBHOOK_SECRET='whsec_SCOoGuDm4ToIXm6aiC8clvHwPoG3kw4c'
# An API Key from TakeShape with the `webhook` role
TAKESHAPE_WEBHOOK_API_KEY='0dc5c4925015435dbc6febe463e0cb35'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment