Skip to content

Instantly share code, notes, and snippets.

@ThomasGaubert
Created March 13, 2017 02:11
Show Gist options
  • Save ThomasGaubert/6e3d2fffc2669e2d74d10b24cbd84f33 to your computer and use it in GitHub Desktop.
Save ThomasGaubert/6e3d2fffc2669e2d74d10b24cbd84f33 to your computer and use it in GitHub Desktop.
Zephyr Server Configuration
var config = {};
config.environment = 'development';
// Express
config.port = 8080;
config.expressLogging = false;
// Secrets
config.sessionSecret = 'supersecret';
config.tokenSecret = 'supersecret';
config.jwtSecret = 'supersecret';
// Steam Passport
config.steamReturnUrl = 'STEAM_RETURN_URL';
config.steamRealm = 'STEAM_REALM';
config.steamApiKey = 'STEAM_API_KEY';
// MongoDB
config.dbUrl = 'DB_URL';
module.exports = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment