-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the Bcrypt dependency and credentials
- Loading branch information
1 parent
e66d8cf
commit fd69209
Showing
4 changed files
with
75 additions
and
47 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,8 +1,9 @@ | ||
if (process.env.NODE_ENV !== 'production') { | ||
require('dotenv').config(); | ||
if (process.env.NODE_ENV !== "production") { | ||
require("dotenv").config(); | ||
} | ||
|
||
export const CLIENT_ID = process.env.CLIENT_ID; | ||
export const CLIENT_SECRET = process.env.CLIENT_SECRET; | ||
export const REDIRECT_URIS = 'http://localhost:1337/sign-in-confirm'; | ||
export const PASSWORD_SECRET = process.env.PASSWORD_SECRET; | ||
export const REDIRECT_URIS = "http://localhost:1337/sign-in-confirm"; | ||
export const JWT_SECRET = process.env.JWT_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
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