mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
import Posts from './modules.js';
|
|
|
|
import './server/routes.js';
|
|
import './server/cron.js';
|
|
|
|
// index
|
|
Posts._ensureIndex({"status": 1, "isFuture": 1});
|
|
Posts._ensureIndex({"status": 1, "isFuture": 1, "postedAt": 1});
|
|
|
|
export default Posts;
|