Created
May 12, 2015 16:31
-
-
Save DayOfThePenguin/af3365ce7debf73e4fb5 to your computer and use it in GitHub Desktop.
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
NODE_ENV=development | |
PATH=bin:node_modules/.bin:/usr/local/bin:/usr/bin:/bin | |
PORT=50000 | |
SECRET=the-secret-the-annotator-gets-from-the-authorizing-site | |
CONSUMER=name-of-the-app-on-which-the-annotator-runs | |
VERSION=1.0 | |
LIVE_DB=mongodb://Colin:[email protected]:12345/LIVE_DB | |
LOCAL_DB=mongodb://localhost/annotationdb | |
STAGING_DB=mongodb://Colin:[email protected]:12345/STAGING_DB |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, so you need a var for
DB
.LIVE_DB
,LOCAL_DB
andSTAGING_DB
are for reference, if you want to switch for any reason; if you look at web.js, it refers toDB
. Set that to:DB= mongodb://localhost/annotationdb
And you should be in business.