2014-06-27 02:09:39 +08:00
|
|
|
Meteor.startup ->
|
2014-10-25 02:02:01 +08:00
|
|
|
Meteor.log.info "server start"
|
|
|
|
|
2014-06-27 02:09:39 +08:00
|
|
|
#remove all data
|
2015-03-07 03:47:07 +08:00
|
|
|
Meteor.WhiteboardCleanStatus.remove({})
|
2014-12-23 03:53:07 +08:00
|
|
|
clearUsersCollection()
|
|
|
|
clearChatCollection()
|
|
|
|
clearMeetingsCollection()
|
|
|
|
clearShapesCollection()
|
|
|
|
clearSlidesCollection()
|
|
|
|
clearPresentationsCollection()
|
2015-07-22 07:55:42 +08:00
|
|
|
clearPollCollection()
|
2015-08-17 06:19:43 +08:00
|
|
|
|
2014-06-27 02:09:39 +08:00
|
|
|
# create create a PubSub connection, start listening
|
|
|
|
Meteor.redisPubSub = new Meteor.RedisPubSub(->
|
2014-10-25 02:02:01 +08:00
|
|
|
Meteor.log.info "created pubsub")
|