Skip to content

Deployment Checklist

Johnny Estilles edited this page Feb 22, 2015 · 6 revisions

#Deployment checklist Below is a list of things you must review before deploying a Keystone app to the internet

Mongoose Index generation

See http://mongoosejs.com/docs/guide.html#indexes

When your application starts up, Mongoose automatically calls ensureIndex for each defined index in your schema. While nice for development, it is recommended this behavior be disabled in production since index creation can cause a significant performance impact. Disable the behavior by setting the autoIndex option of your schema to false.