We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
autopublish
1 parent 974953b commit 7b26a11Copy full SHA for 7b26a11
.meteor/packages
@@ -16,7 +16,6 @@ standard-minifiers # JS/CSS minifiers run for production mode
16
es5-shim # ECMAScript 5 compatibility for older browsers.
17
ecmascript # Enable ECMAScript2015+ syntax in app code
18
19
-autopublish # Publish all data to the clients (for prototyping)
20
insecure # Allow all DB writes from clients (for prototyping)
21
twbs:bootstrap
22
underscore
.meteor/versions
@@ -1,4 +1,3 @@
1
-autopublish@1.0.4
2
autoupdate@1.2.3
3
babel-compiler@5.8.24_1
4
babel-runtime@0.1.4
client/main.js
@@ -0,0 +1 @@
+Meteor.subscribe('posts');
server/publications.js
@@ -0,0 +1,3 @@
+Meteor.publish('posts', function() {
+ return Posts.find();
+});
0 commit comments