10 lines
244 B
CoffeeScript
Executable File
10 lines
244 B
CoffeeScript
Executable File
Meteor.startup ->
|
|
Meteor.log.info "server start"
|
|
|
|
#remove all data
|
|
clearCollections()
|
|
|
|
# create create a PubSub connection, start listening
|
|
Meteor.redisPubSub = new Meteor.RedisPubSub(->
|
|
Meteor.log.info "created pubsub")
|