-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
## Summary Fixes #1295 ### Time to review: 2 mins ## Changes proposed - add `NEXT_PUBLIC_API_URL` for local and prod (todo ticket created to come back around for dev and stage)
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# !! Don't put secrets in this file. Use .env.local for secrets instead !! | ||
# This file is checked into your git repo and provides defaults for non-sensitive | ||
# env vars when running `next dev` only. | ||
# Learn more: https://nextjs.org/docs/app/building-your-application/configuring/environment-variables | ||
|
||
# This is used to determin if this is a prod or a non prod environment for deployed environments. Currently used for noindex and google tag manager logic | ||
NEXT_PUBLIC_ENVIRONMENT=prod | ||
|
||
# If you deploy to a subpath, change this to the subpath so relative paths work correctly. | ||
NEXT_PUBLIC_BASE_PATH= | ||
|
||
# Put the following secrets into a .env.local file for local development | ||
SENDY_API_KEY= | ||
SENDY_API_URL= | ||
SENDY_LIST_ID= | ||
|
||
NEXT_PUBLIC_API_URL=http://api-prod-342430507.us-east-1.elb.amazonaws.com |