development.js 830 B

123456789101112131415161718192021222324
  1. /**
  2. * Development environment settings
  3. *
  4. * This file can include shared settings for a development team,
  5. * such as API keys or remote database passwords. If you're using
  6. * a version control solution for your Sails app, this file will
  7. * be committed to your repository unless you add it to your .gitignore
  8. * file. If your repository will be publicly viewable, don't add
  9. * any private information to this file!
  10. *
  11. */
  12. module.exports = {
  13. /***************************************************************************
  14. * Set the default database connection for models in the development *
  15. * environment (see config/connections.js and config/models.js ) *
  16. ***************************************************************************/
  17. // models: {
  18. // connection: 'someMongodbServer'
  19. // }
  20. };