Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggans committed Mar 26, 2017
2 parents 2005176 + 1ad4fc6 commit 6a4c941
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions server/src/config_example.js
@@ -1,19 +1,25 @@
// config.js
// Stores secret information for API and database configuration.

// Config info for Firebase
var config = {
// Firebase
firebase = {},
firebase: apiKey = "",
firebase: authDomain = "",
firebase: databaseURL = "",
firebase: storageBucket = "",
firebase: messagingSenderId = "",

// Braintree
braintree = {},
braintree: merchantId = "",
braintree: publicKey = "",
braintree: privateKey = ""
braintree: privateKey = "",

// Ports
ports = {},
ports: listen = 3000,
ports: allow = 8000
};

module.exports = config;

0 comments on commit 6a4c941

Please sign in to comment.