This is a supporter for getblackboard.com; mainly for static API services. Let's see if this evolves into something else or not.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* Production environment settings
|
|
|
|
*
|
|
|
|
* This file can include shared settings for a production environment,
|
|
|
|
* such as API keys or remote database passwords. If you're using
|
|
|
|
* a version control solution for your Sails app, this file will
|
|
|
|
* be committed to your repository unless you add it to your .gitignore
|
|
|
|
* file. If your repository will be publicly viewable, don't add
|
|
|
|
* any private information to this file!
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* Set the default database connection for models in the production *
|
|
|
|
* environment (see config/connections.js and config/models.js ) *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
models: {
|
|
|
|
connection: 'jarvisBlackboard',
|
|
|
|
connection: 'nj2mongo'
|
|
|
|
},
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* Set the port in the production environment to 80 *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
port: 8010,
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* Set the log level in production environment to "silent" *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
log: {
|
|
|
|
level: "silent"
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|