Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit a6f13c5

Browse files
Merge pull request #359 from microsoft/fb_branch
removing credentials
2 parents 9007213 + c75a714 commit a6f13c5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.env.example

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
# Note we depend on NODE_ENV being set to dictate which of the env variables below get loaded at runtime.
3+
# See README for more details.
4+
5+
# Get this from https://mlab.com/home after you've logged in and created a database
6+
MONGODB_URI=mongodb://<mlab_user>:<mlab_password>@<mlab_connection_url>
7+
8+
# This is standard running mongodb locally
9+
MONGODB_URI_LOCAL=mongodb://localhost:27017/<database>
10+
11+
# Put lots of randomness in these
12+
SESSION_SECRET=sessionsecret
13+
14+
# Facebook keys - register your app and get yours here: https://developers.facebook.com/
15+
FACEBOOK_ID=facebookID
16+
FACEBOOK_SECRET=facebooksecret
17+
18+
# SendGrid Login - create an account with SendGrid here: https://signup.sendgrid.com/
19+
SENDGRID_USER=myusername
20+
SENDGRID_PASSWORD=mysecurepassword
21+
22+
# Application Port - express server listens on this port (default 3000).
23+
PORT=3000

0 commit comments

Comments
 (0)