-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
4d2a5a5
commit 2ec6c9d
Showing
2 changed files
with
27 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# BACK_END_URL: The base URL of the backend API that the Next.js application communicates with. | ||
# Typically used for server-side API calls in your application. Example: http://localhost:8080 | ||
BACK_END_URL= | ||
|
||
# NEXT_PUBLIC_BASE_URL: A publicly exposed base URL for the backend API. | ||
# Variables prefixed with NEXT_PUBLIC_ are exposed to the browser and used for client-side API calls. | ||
# Example: http://localhost:8080 | ||
NEXT_PUBLIC_BASE_URL= | ||
|
||
# AUTH_SECRET: A secret key used by the authentication library (`auth.js`) for securing tokens. | ||
# This was automatically added by running `npx auth`. | ||
# For production, it is recommended to use a securely generated key. Learn more: https://cli.authjs.dev | ||
AUTH_SECRET= |
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