-
Notifications
You must be signed in to change notification settings - Fork 4
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
03c473b
commit 2196f1b
Showing
1 changed file
with
15 additions
and
12 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,16 +1,19 @@ | ||
// Ze względu na to, że nie będizecie mieć dostępu do zmiennych środowiskowych (plik .env nie będzie przechowywany w repo na GH), | ||
// zamieszczam przykładowy plik z nazwami tych zmiennych oraz co reprezentują. | ||
DATABASE_URI="url do bazy danyh MongoDB" | ||
NODE_ENV=development | ||
VITE_NODE_ENV=development | ||
DATABASE_URI='' | ||
PORT=3000 | ||
SECRET="sekret" | ||
NODEMAILER_HOST='host smpt' | ||
NODEMAILER_AUTH_USER='user' | ||
NODEMAILER_AUTH_PASS="hasło do autoryzacji sendgrid" | ||
NODEMAILER_FROM_MAIL='email, z którego będą wysyłane maile weryfikacyjne' | ||
JEST_TEST_EMAIL='email do przeprowadzania testów Jest, jeżeli uda się takie dodać' | ||
JEST_TEST_STATIC_VERIFICATION_TOKEN='token verifikacyjny' | ||
JEST_TEST_USER_PASSWORD='hasło użytkownika testowego' | ||
SECRET="" | ||
NODEMAILER_HOST='' | ||
NODEMAILER_AUTH_USER='' | ||
NODEMAILER_AUTH_PASS='' | ||
NODEMAILER_FROM_MAIL='' | ||
JEST_TEST_EMAIL='' | ||
JEST_TEST_STATIC_VERIFICATION_TOKEN='' | ||
JEST_TEST_USER_PASSWORD='' | ||
NODE_VERSION=18.17.1 | ||
BACKEND_SERVER_URL="https://example.com" | ||
VERIFICATION_TOKEN_EXPIRATION_TIME="12h" | ||
TOKEN_EXPIRATION_TIME="12h" | ||
BACKEND_SERVER_URL='' | ||
VITE_BACKEND_SERVER_URL='' | ||
VERIFICATION_TOKEN_EXPIRATION_TIME='' | ||
TOKEN_EXPIRATION_TIME='' |