Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chapter 3 - Persisting Data #2

Open
wants to merge 2 commits into
base: chapter-2-validating-requests
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ** DO NOT EDIT THIS FILE! **
# This is an example of a .env file, where you can store environment variables
# This example is shown because the .gitignore file is ignoring .env file from git tracking, to keep our secrets safe and off of GitHub :)

# This is the connection URI for your MongoDB. It should look something like mongodb://mongo:<SECRET>@<SERVER>:<PORT>
DB_CONNECT_URI=<YOUR MONGODB CONNECTION URI>
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
.env