Skip to content
This repository has been archived by the owner on Jul 16, 2018. It is now read-only.

Commit

Permalink
Merge pull request #269 from Pomax/bug894051
Browse files Browse the repository at this point in the history
fixed env.dist so that things just work on a clone
  • Loading branch information
Pomax committed Jul 16, 2013
2 parents 5d7711b + 9984359 commit f0454d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions env.dist
Expand Up @@ -9,23 +9,23 @@ export HOSTNAME="http://localhost:7777"

# API is available at mozilla/MakeAPI
# default API endpoint is http://makeapi.mofostaging.net
export MAKE_ENDPOINT="http://makeapi.mofostaging.net"
export MAKE_ENDPOINT="http://localhost:5000"

# make authentication
export MAKE_AUTH="user:pass"

# API is available at mozilla/login.webmaker.org
# default Persona SSO is http://localhost:3000
export AUDIENCE="http://localhost:3000"
export AUDIENCE="http://localhost:7777"

# Set NODE_ENV to development for testing
export NODE_ENV="development"

# Where can we find the login API endpoint
export LOGIN="http://login.mofostaging.net"
export LOGIN="http://localhost:3000"

# What is our fully qualified login API acces point?
export LOGINAPI="http://testuser:password@login.mofostaging.net"
export LOGINAPI="http://testuser:password@localhost:3000"

# And a cookie secret
export SESSION_SECRET="dummy secret value"
Expand Down

0 comments on commit f0454d8

Please sign in to comment.