production.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * Production environment settings
  3. *
  4. * This file can include shared settings for a production environment,
  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 production *
  15. * environment (see config/connections.js and config/models.js ) *
  16. ***************************************************************************/
  17. // models: {
  18. // connection: 'someMysqlServer'
  19. // },
  20. /***************************************************************************
  21. * Set the port in the production environment to 80 *
  22. ***************************************************************************/
  23. // port: 80,
  24. /***************************************************************************
  25. * Set the log level in production environment to "silent" *
  26. ***************************************************************************/
  27. // log: {
  28. // level: "silent"
  29. // }
  30. };