-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Juan Valacco
committed
May 9, 2024
1 parent
883a399
commit 42be68e
Showing
3 changed files
with
98 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
NODE_ENV="development" # development | production | ||
|
||
# API URL | ||
NEXT_PUBLIC_API_URL='https://stage.api.dataherald.ai' | ||
NEXT_PUBLIC_API_URL= | ||
|
||
# AUTH 0 CONFIG | ||
AUTH0_SECRET='use [openssl rand -hex 32] to generate a 32 bytes value' | ||
AUTH0_ISSUER_BASE_URL='https://auth.dataherald.com' | ||
AUTH0_BASE_URL='http://localhost:3000' | ||
AUTH0_SCOPE='openid profile email offline_access' | ||
AUTH0_API_AUDIENCE='https://hi-george.us.auth0.com/api/v2/' | ||
AUTH0_CLIENT_ID= | ||
AUTH0_CLIENT_SECRET= | ||
AUTH0_SECRET='use [openssl rand -hex 32] to generate a 32 bytes value' | ||
AUTH0_ISSUER_BASE_URL='https://{yourDomain}' | ||
AUTH0_API_AUDIENCE='{yourAudience}' | ||
AUTH0_CLIENT_ID='{yourClientId}' | ||
AUTH0_CLIENT_SECRET='{yourClientSecret}' | ||
|
||
# (OPTIONAL) Posthog Analytics | ||
NEXT_PUBLIC_POSTHOG_KEY= | ||
NEXT_PUBLIC_POSTHOG_HOST="https://app.posthog.com" | ||
NODE_ENV="development" | ||
|
||
# STRIPE | ||
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY= # test mode pk for local development | ||
|
||
# (OPTIONAL) STRIPE | ||
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.