├── .gitignore ├── .meteor ├── .gitignore ├── release ├── platforms ├── .id ├── .finished-upgraders ├── packages └── versions ├── lib ├── collections │ └── apps.js └── routing │ └── router.js ├── client ├── index.html ├── layouts │ └── master_layout.html ├── views │ ├── appPage.js │ ├── topChart.html │ ├── appPreview.html │ └── appPage.html └── style │ └── main.css ├── AppStoreWebApp.pdf └── server ├── publications.js └── fixtures.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.1 2 | -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | android 2 | browser 3 | ios 4 | server 5 | -------------------------------------------------------------------------------- /lib/collections/apps.js: -------------------------------------------------------------------------------- 1 | Apps = new Meteor.Collection('apps'); 2 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 |
2 |{{developer}}
24 | 27 |53 | {{description}} 54 |
55 |