diff --git a/.meteor/packages b/.meteor/packages index 99701c5..4f6673e 100644 --- a/.meteor/packages +++ b/.meteor/packages @@ -4,11 +4,8 @@ # but you can also edit it by hand. meteor-platform -autopublish -insecure iron:router mizzao:bootstrap-3 coffeescript less perak:markdown - diff --git a/.meteor/versions b/.meteor/versions index 73b6b5c..5589375 100644 --- a/.meteor/versions +++ b/.meteor/versions @@ -1,5 +1,4 @@ application-configuration@1.0.2 -autopublish@1.0.0 autoupdate@1.1.1 base64@1.0.0 binary-heap@1.0.0 @@ -21,7 +20,6 @@ html-tools@1.0.1 htmljs@1.0.1 http@1.0.6 id-map@1.0.0 -insecure@1.0.0 iron:core@0.3.4 iron:dynamic-template@0.4.1 iron:layout@0.4.1 diff --git a/README.md b/README.md index 04db8a9..639d767 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ MarkCloud is [hosted online](http://markcloud.meteor.com). ### Development Clone the repository, make sure you installed [Meteor](http://meteor.com) then -run `meteor`. Yep, that's it. +run `meteor` in the project folder. Yep, that's it. ## License diff --git a/server/server.coffee b/server/server.coffee index 9f51cb1..b29fd15 100644 --- a/server/server.coffee +++ b/server/server.coffee @@ -1,3 +1,8 @@ docs = new Meteor.Collection 'docs' Meteor.publish 'doc', (id) -> docs.find _id: id + +docs.allow + insert: -> yes + update: -> no + remove: -> no